java/sql-dk/src/info/globalcode/sql/dk/CLIParserException.java
author František Kučera <franta-hg@frantovo.cz>
Sun, 15 Dec 2013 23:58:58 +0100
branchv_0
changeset 9 2ec52027b97f
child 16 5b8fcd35d4d6
permissions -rw-r--r--
better exceptions

package info.globalcode.sql.dk;

/**
 *
 * @author Ing. František Kučera (frantovo.cz)
 */
public class CLIParserException extends Exception {

	public CLIParserException() {
	}

	public CLIParserException(String message) {
		super(message);
	}

	public CLIParserException(Throwable cause) {
		super(cause);
	}

	public CLIParserException(String message, Throwable cause) {
		super(message, cause);
	}
}