java/sql-dk/src/main/java/info/globalcode/sql/dk/InvalidOptionsException.java
branchv_0
changeset 238 4a1864c3e867
parent 63 3b9ec9c23a37
child 250 aae5009bd0af
equal deleted inserted replaced
237:7e08730da258 238:4a1864c3e867
       
     1 /**
       
     2  * SQL-DK
       
     3  * Copyright © 2013 František Kučera (frantovo.cz)
       
     4  *
       
     5  * This program is free software: you can redistribute it and/or modify
       
     6  * it under the terms of the GNU General Public License as published by
       
     7  * the Free Software Foundation, either version 3 of the License, or
       
     8  * (at your option) any later version.
       
     9  *
       
    10  * This program is distributed in the hope that it will be useful,
       
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
       
    13  * GNU General Public License for more details.
       
    14  *
       
    15  * You should have received a copy of the GNU General Public License
       
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
       
    17  */
       
    18 package info.globalcode.sql.dk;
       
    19 
       
    20 import java.util.ArrayList;
       
    21 import java.util.Collection;
       
    22 import java.util.Collections;
       
    23 
       
    24 /**
       
    25  *
       
    26  * @author Ing. František Kučera (frantovo.cz)
       
    27  */
       
    28 public class InvalidOptionsException extends Exception {
       
    29 
       
    30 	private final Collection<OptionProblem> problems = new ArrayList<>();
       
    31 
       
    32 	public Collection<OptionProblem> getProblems() {
       
    33 		return Collections.unmodifiableCollection(problems);
       
    34 	}
       
    35 
       
    36 	public void addProblem(OptionProblem p) {
       
    37 		problems.add(p);
       
    38 	}
       
    39 
       
    40 	public boolean hasProblems() {
       
    41 		return !problems.isEmpty();
       
    42 	}
       
    43 
       
    44 	public static class OptionProblem {
       
    45 
       
    46 		private String description;
       
    47 		private Throwable exception;
       
    48 
       
    49 		public OptionProblem(String description) {
       
    50 			this.description = description;
       
    51 		}
       
    52 
       
    53 		public OptionProblem(String description, Throwable exception) {
       
    54 			this.description = description;
       
    55 			this.exception = exception;
       
    56 		}
       
    57 
       
    58 		public String getDescription() {
       
    59 			return description;
       
    60 		}
       
    61 
       
    62 		public Throwable getException() {
       
    63 			return exception;
       
    64 		}
       
    65 	}
       
    66 }