franta-hg@16: /** franta-hg@16: * SQL-DK franta-hg@16: * Copyright © 2013 František Kučera (frantovo.cz) franta-hg@16: * franta-hg@16: * This program is free software: you can redistribute it and/or modify franta-hg@16: * 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@16: * franta-hg@16: * This program is distributed in the hope that it will be useful, franta-hg@16: * but WITHOUT ANY WARRANTY; without even the implied warranty of franta-hg@16: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the franta-hg@16: * GNU General Public License for more details. franta-hg@16: * franta-hg@16: * You should have received a copy of the GNU General Public License franta-hg@16: * along with this program. If not, see . franta-hg@16: */ franta-hg@9: package info.globalcode.sql.dk; franta-hg@9: franta-hg@9: /** franta-hg@9: * franta-hg@9: * @author Ing. František Kučera (frantovo.cz) franta-hg@9: */ franta-hg@33: public class CLIParserException extends DKException { franta-hg@9: franta-hg@9: public CLIParserException() { franta-hg@9: } franta-hg@9: franta-hg@9: public CLIParserException(String message) { franta-hg@9: super(message); franta-hg@9: } franta-hg@9: franta-hg@9: public CLIParserException(Throwable cause) { franta-hg@9: super(cause); franta-hg@9: } franta-hg@9: franta-hg@9: public CLIParserException(String message, Throwable cause) { franta-hg@9: super(message, cause); franta-hg@9: } franta-hg@9: }