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