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