tim@129: /* Copyright (C) 2007 con terra GmbH (http://www.conterra.de) tim@129: * All rights reserved tim@129: * tim@129: * $Id: DatasourceException.java,v 1.2 2008/01/30 12:38:34 blume Exp $ tim@129: * tim@129: * created by: drewnak tim@129: * created at : 21.11.2007 tim@129: * created at : 14:56:32 tim@129: * tim@129: * modified by: $Author: blume $ tim@129: * modified at: $Date: 2008/01/30 12:38:34 $ tim@129: */ tim@129: package de.intevation.gnv.geobackend.sde.datasources.exception; tim@129: tim@129: /** tim@129: * A Class for encapsulating implementation specific datasource exceptions. tim@129: * This exception class can be used for all exceptions occuring in connection to "datasources actions". tim@129: */ tim@129: public class DatasourceException extends Exception { tim@129: tim@129: public DatasourceException() { tim@129: super(); tim@129: } tim@129: tim@129: public DatasourceException(String pMessage) { tim@129: super(pMessage); tim@129: } tim@129: tim@129: public DatasourceException(String pMessage, Throwable pCause) { tim@129: super(pMessage, pCause); tim@129: } tim@129: tim@129: public DatasourceException(Throwable pCause) { tim@129: super(pCause); tim@129: } tim@129: tim@129: }