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

General CodecCleanup: Remove deprecated TODOS. Replaced Tabs against whitespaces Organize some Imports geo-backend/trunk@280 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 02 Nov 2009 10:53:06 +0000
parents 110e3ac1b7d2
children 12f88239fb33
line wrap: on
line source
/* Copyright (C) 2007 con terra GmbH (http://www.conterra.de)
 * All rights reserved
 *
 * $Id: DatasourceException.java,v 1.2 2008/01/30 12:38:34 blume Exp $
 *
 * created by:      drewnak
 * created at :     21.11.2007
 * created at :     14:56:32
 *
 * modified by:     $Author: blume $
 * modified at:     $Date: 2008/01/30 12:38:34 $
 */
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".
 */
public class DatasourceException extends Exception {

    public DatasourceException() {
        super();
    }

    public DatasourceException(String pMessage) {
        super(pMessage);
    }

    public DatasourceException(String pMessage, Throwable pCause) {
        super(pMessage, pCause);
    }

    public DatasourceException(Throwable pCause) {
        super(pCause);
    }

}

http://dive4elements.wald.intevation.org