view geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/exception/DatasourceException.java @ 886:8b442223741c

Ordered imports. Removed empty headers. geo-backend/trunk@856 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 29 Mar 2010 09:22:07 +0000
parents 12f88239fb33
children b757def3ff55
line wrap: on
line source
package de.intevation.gnv.geobackend.sde.datasources.exception;

/**
 * A Class for encapsulating implementation specific datasource exceptions.
 * This exception class can be used for all exceptions occuring in connection 
 * to "datasources actions".
 * 
 * @author blume
 * @author drewnak
 * @author Tim Englich <tim.englich@intevation.de>
 */
public class DatasourceException extends Exception {

    /**
     * The UID of this Class.
     */
    private static final long serialVersionUID = 2593142889158383466L;

    /**
     * Constructor
     */
    public DatasourceException() {
        super();
    }

    /**
     * Constructor
     * @param pMessage the Exceptionmessage
     */
    public DatasourceException(String pMessage) {
        super(pMessage);
    }

    /**
     * Constructor
     * @param pMessage the Exceptionmessage
     * @param pCause the Throwable which cause this exception
     */
    public DatasourceException(String pMessage, Throwable pCause) {
        super(pMessage, pCause);
    }

    /**
     * Constructor
     * @param pCause the Throwable which cause this exception
     */
    public DatasourceException(Throwable pCause) {
        super(pCause);
    }

}

http://dive4elements.wald.intevation.org