java/sql-dk/src/main/java/info/globalcode/sql/dk/CLIParserException.java
author František Kučera <franta-hg@frantovo.cz>
Fri, 23 Sep 2022 18:05:50 +0200
branchv_0
changeset 254 c4b901ff0703
parent 250 aae5009bd0af
permissions -rw-r--r--
recfile formatter: write record count (as a comment at the end of the relation)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
     1
/**
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
     2
 * SQL-DK
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
     3
 * Copyright © 2013 František Kučera (frantovo.cz)
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
     4
 *
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
     5
 * This program is free software: you can redistribute it and/or modify
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
250
aae5009bd0af fix license version: GNU GPLv3
František Kučera <franta-hg@frantovo.cz>
parents: 238
diff changeset
     7
 * the Free Software Foundation, version 3 of the License.
16
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
     8
 *
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    12
 * GNU General Public License for more details.
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    13
 *
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    14
 * You should have received a copy of the GNU General Public License
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    16
 */
9
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
package info.globalcode.sql.dk;
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
/**
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
 *
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    21
 * @author Ing. František Kučera (frantovo.cz)
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    22
 */
33
04db6ccd6c48 configuration loading from XML
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    23
public class CLIParserException extends DKException {
9
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    24
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    25
	public CLIParserException() {
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    26
	}
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    27
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
	public CLIParserException(String message) {
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
		super(message);
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    30
	}
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
	public CLIParserException(Throwable cause) {
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    33
		super(cause);
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    34
	}
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    36
	public CLIParserException(String message, Throwable cause) {
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    37
		super(message, cause);
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    38
	}
2ec52027b97f better exceptions
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
}