view geo-backend/src/main/java/de/intevation/gnv/geobackend/base/query/container/exception/QueryContainerException.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.container.exception;

/**
 * Exceptioncalls which will be used to retun Exception in
 * the QuerContainer-Package.
 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 *
 */
public class QueryContainerException extends Exception {

    /**
     * The UID auf this Class
     */
    private static final long serialVersionUID = -1811252311941938708L;

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

    /**
     * Constructor
     * @param arg0
     */
    public QueryContainerException(String arg0) {
        super(arg0);
    }

    /**
     * Constructor
     * @param arg0
     */
    public QueryContainerException(Throwable arg0) {
        super(arg0);
    }

    /**
     * Constructor
     * @param arg0
     * @param arg1
     */
    public QueryContainerException(String arg0, Throwable arg1) {
        super(arg0, arg1);
    }

}

http://dive4elements.wald.intevation.org