view geo-backend/src/main/java/de/intevation/gnv/geobackend/base/query/exception/QueryException.java @ 884:12f88239fb33

Updated Javadocs to the Listed Classes. Also done some Codecleanup and removed unused Methods from the Code. geo-backend/trunk@842 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 26 Mar 2010 15:23:03 +0000
parents 5a583cff97ea
children 8b442223741c
line wrap: on
line source
/**
 *
 */
package de.intevation.gnv.geobackend.base.query.exception;
/**
 * This is a specialized Exceptionclass for Exceptions that occurse during
 * querying Data from the Database-
 * @author Tim Englich <tim.englich@intevation.de>
 *
 */
public class QueryException extends Exception {

    /**
     * The UID for this Class
     */
    private static final long serialVersionUID = -1337567603858112424L;

    /**
     * Constructor
     */
    public QueryException() {
    }

    /**
     * Constructor
     * @param message
     */
    public QueryException(String message) {
        super(message);
    }

    /**
     * Constructor
     * @param cause
     */
    public QueryException(Throwable cause) {
        super(cause);
    }

    /**
     * Constructor
     * @param message
     * @param cause
     */
    public QueryException(String message, Throwable cause) {
        super(message, cause);
    }

}

http://dive4elements.wald.intevation.org