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: }