comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/base/query/container/exception/QueryContainerException.java @ 132:5a583cff97ea

Implementation of the Datainfrastructure for fetching Data from different DataStores. geo-backend/trunk@12 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 04 Sep 2009 08:11:30 +0000
parents
children 8b442223741c
comparison
equal deleted inserted replaced
131:d8ff739b9f3b 132:5a583cff97ea
1 /**
2 *
3 */
4 package de.intevation.gnv.geobackend.base.query.container.exception;
5 /**
6 * Exceptioncalls which will be used to retun Exception in
7 * the QuerContainer-Package.
8 * @author Tim Englich <tim.englich@intevation.de>
9 *
10 */
11 public class QueryContainerException extends Exception {
12
13 /**
14 * The UID auf this Class
15 */
16 private static final long serialVersionUID = -1811252311941938708L;
17
18 /**
19 * Constructor
20 */
21 public QueryContainerException() {
22 }
23
24 /**
25 * Constructor
26 * @param arg0
27 */
28 public QueryContainerException(String arg0) {
29 super(arg0);
30 }
31
32 /**
33 * Constructor
34 * @param arg0
35 */
36 public QueryContainerException(Throwable arg0) {
37 super(arg0);
38 }
39
40 /**
41 * Constructor
42 * @param arg0
43 * @param arg1
44 */
45 public QueryContainerException(String arg0, Throwable arg1) {
46 super(arg0, arg1);
47 }
48
49 }

http://dive4elements.wald.intevation.org