java/sql-dk/src/main/java/info/globalcode/sql/dk/DKException.java
author František Kučera <franta-hg@frantovo.cz>
Mon, 04 Mar 2019 20:15:24 +0100
branchv_0
changeset 238 4a1864c3e867
parent 26 java/sql-dk/src/info/globalcode/sql/dk/DKException.java@4ec8e5534eb9
child 250 aae5009bd0af
permissions -rw-r--r--
mavenized: sql-dk
franta-hg@26
     1
/**
franta-hg@26
     2
 * SQL-DK
franta-hg@26
     3
 * Copyright © 2013 František Kučera (frantovo.cz)
franta-hg@26
     4
 *
franta-hg@26
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@26
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@26
     7
 * the Free Software Foundation, either version 3 of the License, or
franta-hg@26
     8
 * (at your option) any later version.
franta-hg@26
     9
 *
franta-hg@26
    10
 * This program is distributed in the hope that it will be useful,
franta-hg@26
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@26
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@26
    13
 * GNU General Public License for more details.
franta-hg@26
    14
 *
franta-hg@26
    15
 * You should have received a copy of the GNU General Public License
franta-hg@26
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@26
    17
 */
franta-hg@26
    18
package info.globalcode.sql.dk;
franta-hg@26
    19
franta-hg@26
    20
/**
franta-hg@26
    21
 * TODO: GEC
franta-hg@26
    22
 *
franta-hg@26
    23
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@26
    24
 */
franta-hg@26
    25
public class DKException extends Exception {
franta-hg@26
    26
franta-hg@26
    27
	public DKException() {
franta-hg@26
    28
	}
franta-hg@26
    29
franta-hg@26
    30
	public DKException(String message) {
franta-hg@26
    31
		super(message);
franta-hg@26
    32
	}
franta-hg@26
    33
franta-hg@26
    34
	public DKException(Throwable cause) {
franta-hg@26
    35
		super(cause);
franta-hg@26
    36
	}
franta-hg@26
    37
franta-hg@26
    38
	public DKException(String message, Throwable cause) {
franta-hg@26
    39
		super(message, cause);
franta-hg@26
    40
	}
franta-hg@26
    41
}