comparison gnv-artifacts/src/main/java/de/intevation/gnv/utils/exception/ValidationException.java @ 173:1b2fc94766c9

Added real Coordinate-Query to TimeSeries-Mesh gnv-artifacts/trunk@212 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 13 Oct 2009 09:11:23 +0000
parents
children b1f5f2a8840f
comparison
equal deleted inserted replaced
172:b5e55f460f0b 173:1b2fc94766c9
1 /**
2 *
3 */
4 package de.intevation.gnv.utils.exception;
5 /**
6 * @author Tim Englich <tim.englich@intevation.de>
7 *
8 */
9 public class ValidationException extends Exception {
10
11 /**
12 * The Uid of this Class
13 */
14 private static final long serialVersionUID = -6189218101861801079L;
15
16 /**
17 * Constructor
18 */
19 public ValidationException() {
20 super();
21 }
22
23 /**
24 * Constructor
25 * @param arg0
26 */
27 public ValidationException(String arg0) {
28 super(arg0);
29 }
30
31 /**
32 * Constructor
33 * @param arg0
34 */
35 public ValidationException(Throwable arg0) {
36 super(arg0);
37 }
38
39 /**
40 * Constructor
41 * @param arg0
42 * @param arg1
43 */
44 public ValidationException(String arg0, Throwable arg1) {
45 super(arg0, arg1);
46 }
47
48 }

http://dive4elements.wald.intevation.org