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
     1 package info.globalcode.sql.dk;
     2 
     3 /**
     4  *
     5  * @author Ing. František Kučera (frantovo.cz)
     6  */
     7 public class CLIParserException extends Exception {
     8 
     9 	public CLIParserException() {
    10 	}
    11 
    12 	public CLIParserException(String message) {
    13 		super(message);
    14 	}
    15 
    16 	public CLIParserException(Throwable cause) {
    17 		super(cause);
    18 	}
    19 
    20 	public CLIParserException(String message, Throwable cause) {
    21 		super(message, cause);
    22 	}
    23 }