java/sql-dk/src/main/java/info/globalcode/sql/dk/batch/BatchException.java
author František Kučera <franta-hg@frantovo.cz>
Thu, 24 Oct 2019 21:43:08 +0200
branchv_0
changeset 250 aae5009bd0af
parent 238 4a1864c3e867
permissions -rw-r--r--
fix license version: GNU GPLv3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
144
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
/**
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
 * SQL-DK
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
 * Copyright © 2014 František Kučera (frantovo.cz)
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
 *
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
 * This program is free software: you can redistribute it and/or modify
d273d7c6dc0c Batch: basic encoder and prepare batch
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.
144
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
 *
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
 * GNU General Public License for more details.
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
 *
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
 */
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
package info.globalcode.sql.dk.batch;
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
import info.globalcode.sql.dk.DKException;
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    21
/**
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    22
 *
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    23
 * @author Ing. František Kučera (frantovo.cz)
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    24
 */
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    25
public class BatchException extends DKException {
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    26
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    27
	public BatchException() {
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
	}
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    30
	public BatchException(String message) {
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
		super(message);
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
	}
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    33
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    34
	public BatchException(Throwable cause) {
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
		super(cause);
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    36
	}
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    37
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    38
	public BatchException(String message, Throwable cause) {
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
		super(message, cause);
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
	}
d273d7c6dc0c Batch: basic encoder and prepare batch
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    41
}