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