comparison geo-backend/src/main/java/de/intevation/gnv/geobackend/base/query/exception/QueryException.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 12f88239fb33
comparison
equal deleted inserted replaced
131:d8ff739b9f3b 132:5a583cff97ea
1 /**
2 *
3 */
4 package de.intevation.gnv.geobackend.base.query.exception;
5 /**
6 * @author Tim Englich <tim.englich@intevation.de>
7 *
8 */
9 public class QueryException extends Exception {
10
11 /**
12 * The UID for this Class
13 */
14 private static final long serialVersionUID = -1337567603858112424L;
15
16 /**
17 * Constructor
18 */
19 public QueryException() {
20 }
21
22 /**
23 * Constructor
24 * @param message
25 */
26 public QueryException(String message) {
27 super(message);
28 }
29
30 /**
31 * Constructor
32 * @param cause
33 */
34 public QueryException(Throwable cause) {
35 super(cause);
36 }
37
38 /**
39 * Constructor
40 * @param message
41 * @param cause
42 */
43 public QueryException(String message, Throwable cause) {
44 super(message, cause);
45 }
46
47 }

http://dive4elements.wald.intevation.org