java/sql-dk/src/info/globalcode/sql/dk/CLIParserException.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 28 Dec 2013 16:45:04 +0100
branchv_0
changeset 89 98d18e9a357b
parent 33 04db6ccd6c48
permissions -rw-r--r--
InfoLister (configuration listings) will use TabularPrefetchingFormatter as default
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@9
    18
package info.globalcode.sql.dk;
franta-hg@9
    19
franta-hg@9
    20
/**
franta-hg@9
    21
 *
franta-hg@9
    22
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@9
    23
 */
franta-hg@33
    24
public class CLIParserException extends DKException {
franta-hg@9
    25
franta-hg@9
    26
	public CLIParserException() {
franta-hg@9
    27
	}
franta-hg@9
    28
franta-hg@9
    29
	public CLIParserException(String message) {
franta-hg@9
    30
		super(message);
franta-hg@9
    31
	}
franta-hg@9
    32
franta-hg@9
    33
	public CLIParserException(Throwable cause) {
franta-hg@9
    34
		super(cause);
franta-hg@9
    35
	}
franta-hg@9
    36
franta-hg@9
    37
	public CLIParserException(String message, Throwable cause) {
franta-hg@9
    38
		super(message, cause);
franta-hg@9
    39
	}
franta-hg@9
    40
}