franta-hg@144: /** franta-hg@144: * SQL-DK franta-hg@144: * Copyright © 2014 František Kučera (frantovo.cz) franta-hg@144: * franta-hg@144: * This program is free software: you can redistribute it and/or modify franta-hg@144: * it under the terms of the GNU General Public License as published by franta-hg@250: * the Free Software Foundation, version 3 of the License. franta-hg@144: * franta-hg@144: * This program is distributed in the hope that it will be useful, franta-hg@144: * but WITHOUT ANY WARRANTY; without even the implied warranty of franta-hg@144: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the franta-hg@144: * GNU General Public License for more details. franta-hg@144: * franta-hg@144: * You should have received a copy of the GNU General Public License franta-hg@144: * along with this program. If not, see . franta-hg@144: */ franta-hg@144: package info.globalcode.sql.dk.batch; franta-hg@144: franta-hg@144: import info.globalcode.sql.dk.DKException; franta-hg@144: franta-hg@144: /** franta-hg@144: * franta-hg@144: * @author Ing. František Kučera (frantovo.cz) franta-hg@144: */ franta-hg@144: public class BatchException extends DKException { franta-hg@144: franta-hg@144: public BatchException() { franta-hg@144: } franta-hg@144: franta-hg@144: public BatchException(String message) { franta-hg@144: super(message); franta-hg@144: } franta-hg@144: franta-hg@144: public BatchException(Throwable cause) { franta-hg@144: super(cause); franta-hg@144: } franta-hg@144: franta-hg@144: public BatchException(String message, Throwable cause) { franta-hg@144: super(message, cause); franta-hg@144: } franta-hg@144: }