view geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/exception/DatasourceException.java @ 884:12f88239fb33

Updated Javadocs to the Listed Classes. Also done some Codecleanup and removed unused Methods from the Code. geo-backend/trunk@842 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 26 Mar 2010 15:23:03 +0000
parents 110e3ac1b7d2
children 8b442223741c
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