comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/sde/datasources/exception/DatasourceException.java @ 884:12f88239fb33

Updated Javadocs to the Listed Classes. Also done some Codecleanup and removed unused Methods from the Code. geo-backend/trunk@842 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 26 Mar 2010 15:23:03 +0000
parents 110e3ac1b7d2
children 8b442223741c
comparison
equal deleted inserted replaced
883:6d568397740c 884:12f88239fb33
1 /* Copyright (C) 2007 con terra GmbH (http://www.conterra.de) 1 /**
2 * All rights reserved 2 *
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 */ 3 */
13 package de.intevation.gnv.geobackend.sde.datasources.exception; 4 package de.intevation.gnv.geobackend.sde.datasources.exception;
14 5
15 /** 6 /**
16 * A Class for encapsulating implementation specific datasource exceptions. 7 * A Class for encapsulating implementation specific datasource exceptions.
17 * This exception class can be used for all exceptions occuring in connection to "datasources actions". 8 * This exception class can be used for all exceptions occuring in connection
9 * to "datasources actions".
10 *
11 * @author blume
12 * @author drewnak
13 * @author Tim Englich <tim.englich@intevation.de>
18 */ 14 */
19 public class DatasourceException extends Exception { 15 public class DatasourceException extends Exception {
20 16
17 /**
18 * The UID of this Class.
19 */
20 private static final long serialVersionUID = 2593142889158383466L;
21
22 /**
23 * Constructor
24 */
21 public DatasourceException() { 25 public DatasourceException() {
22 super(); 26 super();
23 } 27 }
24 28
29 /**
30 * Constructor
31 * @param pMessage the Exceptionmessage
32 */
25 public DatasourceException(String pMessage) { 33 public DatasourceException(String pMessage) {
26 super(pMessage); 34 super(pMessage);
27 } 35 }
28 36
37 /**
38 * Constructor
39 * @param pMessage the Exceptionmessage
40 * @param pCause the Throwable which cause this exception
41 */
29 public DatasourceException(String pMessage, Throwable pCause) { 42 public DatasourceException(String pMessage, Throwable pCause) {
30 super(pMessage, pCause); 43 super(pMessage, pCause);
31 } 44 }
32 45
46 /**
47 * Constructor
48 * @param pCause the Throwable which cause this exception
49 */
33 public DatasourceException(Throwable pCause) { 50 public DatasourceException(Throwable pCause) {
34 super(pCause); 51 super(pCause);
35 } 52 }
36 53
37 } 54 }

http://dive4elements.wald.intevation.org