ingo@1127: /* ingo@1127: * Copyright (c) 2010 by Intevation GmbH ingo@1127: * ingo@1127: * This program is free software under the LGPL (>=v2.1) ingo@1127: * Read the file LGPL.txt coming with the software for details ingo@1127: * or visit http://www.gnu.org/licenses/ if it does not exist. ingo@1127: */ ingo@1127: 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: }