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.exception; sascha@886: tim@132: /** tim@884: * This is a specialized Exceptionclass for Exceptions that occurse during tim@884: * querying Data from the Database- sascha@887: * @author Tim Englich tim@132: * tim@132: */ tim@132: public class QueryException extends Exception { tim@132: tim@132: /** tim@132: * The UID for this Class tim@132: */ tim@132: private static final long serialVersionUID = -1337567603858112424L; tim@132: tim@132: /** tim@132: * Constructor tim@132: */ tim@132: public QueryException() { tim@132: } tim@132: tim@132: /** tim@132: * Constructor tim@132: * @param message tim@132: */ tim@132: public QueryException(String message) { tim@132: super(message); tim@132: } tim@132: tim@132: /** tim@132: * Constructor tim@132: * @param cause tim@132: */ tim@132: public QueryException(Throwable cause) { tim@132: super(cause); tim@132: } tim@132: tim@132: /** tim@132: * Constructor tim@132: * @param message tim@132: * @param cause tim@132: */ tim@132: public QueryException(String message, Throwable cause) { tim@132: super(message, cause); tim@132: } tim@132: tim@132: }