java/sql-dk/src/main/java/info/globalcode/sql/dk/formatting/FormatterException.java
author František Kučera <franta-hg@frantovo.cz>
Fri, 23 Sep 2022 18:05:50 +0200
branchv_0
changeset 254 c4b901ff0703
parent 250 aae5009bd0af
permissions -rw-r--r--
recfile formatter: write record count (as a comment at the end of the relation)
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
250
aae5009bd0af fix license version: GNU GPLv3
František Kučera <franta-hg@frantovo.cz>
parents: 238
diff changeset
     7
 * the Free Software Foundation, version 3 of the License.
34
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
 *
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
 * 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
    10
 * 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
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
 * GNU General Public License for more details.
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
 *
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
 * 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
    15
 * 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
    16
 */
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
package info.globalcode.sql.dk.formatting;
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
import info.globalcode.sql.dk.DKException;
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
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
 * @author Ing. František Kučera (frantovo.cz)
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    24
 */
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    25
public class FormatterException extends DKException {
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    26
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    27
	public FormatterException() {
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
	}
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
	public FormatterException(String message) {
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
		super(message);
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
	}
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
	public FormatterException(Throwable cause) {
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
		super(cause);
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    36
	}
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
	public FormatterException(String message, Throwable cause) {
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
		super(message, cause);
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
	}
9335cf31c0f2 first working version
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    41
}