Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/utils/exception/ValidationException.java @ 657:af3f56758f59
merged gnv-artifacts/0.5
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:53 +0200 |
parents | 1b2fc94766c9 |
children | b1f5f2a8840f |
comparison
equal
deleted
inserted
replaced
590:5f5f273c8566 | 657:af3f56758f59 |
---|---|
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 } |