view geo-backend/src/main/java/de/intevation/gnv/geobackend/base/query/exception/QueryException.java @ 132:5a583cff97ea

Implementation of the Datainfrastructure for fetching Data from different DataStores. geo-backend/trunk@12 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 04 Sep 2009 08:11:30 +0000
parents
children 12f88239fb33
line wrap: on
line source
/**
 *
 */
package de.intevation.gnv.geobackend.base.query.exception;
/**
 * @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