view geo-backend/src/main/java/de/intevation/gnv/geobackend/base/query/exception/QueryException.java @ 887:b757def3ff55

Bring @author javadoc tags in form '@author <a href="john.doe@example.com">John Doe</a>' geo-backend/trunk@859 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 29 Mar 2010 09:45:05 +0000
parents 8b442223741c
children ebeb56428409
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 <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 *
 */
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