ingo@1022: /* ingo@1022: * Copyright (c) 2010 by Intevation GmbH ingo@1022: * ingo@1022: * This program is free software under the LGPL (>=v2.1) ingo@1022: * Read the file LGPL.txt coming with the software for details ingo@1022: * or visit http://www.gnu.org/licenses/ if it does not exist. ingo@1022: */ ingo@1022: tim@402: package de.intevation.gnv.action.mapviewer.parser; sascha@683: tim@402: /** tim@953: * Exceptionclass for qualifying exception which were caused by the tim@953: * ExternalCallParser. sascha@684: * @author Tim Englich tim@402: * tim@402: */ tim@402: public class ExternalCallParserException extends Exception { tim@402: tim@402: /** tim@402: * The UID of this Class tim@402: */ tim@402: private static final long serialVersionUID = -4917914097058485262L; tim@402: tim@402: /** tim@402: * Constructor tim@402: */ tim@402: public ExternalCallParserException() { tim@402: } tim@402: tim@402: /** tim@402: * Constructor tim@402: * @param arg0 tim@402: */ tim@402: public ExternalCallParserException(String arg0) { tim@402: super(arg0); tim@402: } tim@402: tim@402: /** tim@402: * Constructor tim@402: * @param arg0 tim@402: */ tim@402: public ExternalCallParserException(Throwable arg0) { tim@402: super(arg0); tim@402: } tim@402: tim@402: /** tim@402: * Constructor tim@402: * @param arg0 tim@402: * @param arg1 tim@402: */ tim@402: public ExternalCallParserException(String arg0, Throwable arg1) { tim@402: super(arg0, arg1); tim@402: } tim@402: tim@402: }