view geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/exception/DatasourceException.java @ 129:110e3ac1b7d2

Library Dependencies Added to pom.xml-File Import of SDE-Datasources geo-backend/trunk@5 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Wed, 02 Sep 2009 09:07:03 +0000
parents
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