tim@132: package de.intevation.gnv.geobackend.base.query.container.exception; sascha@886: tim@132: /** tim@132: * Exceptioncalls which will be used to retun Exception in tim@132: * the QuerContainer-Package. sascha@887: * @author Tim Englich tim@132: * tim@132: */ tim@132: public class QueryContainerException extends Exception { tim@132: tim@132: /** tim@132: * The UID auf this Class tim@132: */ tim@132: private static final long serialVersionUID = -1811252311941938708L; tim@132: tim@132: /** tim@132: * Constructor tim@132: */ tim@132: public QueryContainerException() { tim@132: } tim@132: tim@132: /** tim@132: * Constructor tim@132: * @param arg0 tim@132: */ tim@132: public QueryContainerException(String arg0) { tim@132: super(arg0); tim@132: } tim@132: tim@132: /** tim@132: * Constructor tim@132: * @param arg0 tim@132: */ tim@132: public QueryContainerException(Throwable arg0) { tim@132: super(arg0); tim@132: } tim@132: tim@132: /** tim@132: * Constructor tim@132: * @param arg0 tim@132: * @param arg1 tim@132: */ tim@132: public QueryContainerException(String arg0, Throwable arg1) { tim@132: super(arg0, arg1); tim@132: } tim@132: tim@132: }