comparison 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
comparison
equal deleted inserted replaced
128:9b3f5a067c29 129:110e3ac1b7d2
1 /* Copyright (C) 2007 con terra GmbH (http://www.conterra.de)
2 * All rights reserved
3 *
4 * $Id: DatasourceException.java,v 1.2 2008/01/30 12:38:34 blume Exp $
5 *
6 * created by: drewnak
7 * created at : 21.11.2007
8 * created at : 14:56:32
9 *
10 * modified by: $Author: blume $
11 * modified at: $Date: 2008/01/30 12:38:34 $
12 */
13 package de.intevation.gnv.geobackend.sde.datasources.exception;
14
15 /**
16 * A Class for encapsulating implementation specific datasource exceptions.
17 * This exception class can be used for all exceptions occuring in connection to "datasources actions".
18 */
19 public class DatasourceException extends Exception {
20
21 public DatasourceException() {
22 super();
23 }
24
25 public DatasourceException(String pMessage) {
26 super(pMessage);
27 }
28
29 public DatasourceException(String pMessage, Throwable pCause) {
30 super(pMessage, pCause);
31 }
32
33 public DatasourceException(Throwable pCause) {
34 super(pCause);
35 }
36
37 }

http://dive4elements.wald.intevation.org