view geo-backend/src/main/java/de/intevation/gnv/geobackend/base/query/exception/QueryException.java @ 1145:dfe1ac687c7f tip

added tags
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Sep 2012 12:16:15 +0200
parents ebeb56428409
children
line wrap: on
line source
/*
 * Copyright (c) 2010 by Intevation GmbH
 *
 * This program is free software under the LGPL (>=v2.1)
 * Read the file LGPL.txt coming with the software for details
 * or visit http://www.gnu.org/licenses/ if it does not exist.
 */

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