view geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/exception/DatasourceException.java @ 1127:ebeb56428409

Added license headers and license file. geo-backend/trunk@1261 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 02 Nov 2010 17:52:22 +0000
parents 02cd2935b5fa
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.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 <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 */
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