Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/state/exception/StateException.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 | e964a3d8f7bc |
children | 9a828e5a2390 |
comparison
equal
deleted
inserted
replaced
590:5f5f273c8566 | 657:af3f56758f59 |
---|---|
1 /** | |
2 * | |
3 */ | |
4 package de.intevation.gnv.state.exception; | |
5 | |
6 /** | |
7 * @author Tim Englich <tim.englich@intevation.de> | |
8 * | |
9 */ | |
10 public class StateException extends Exception { | |
11 | |
12 /** | |
13 * The UID of the Class | |
14 */ | |
15 private static final long serialVersionUID = -1635921702746050244L; | |
16 | |
17 /** | |
18 * Constructor | |
19 */ | |
20 public StateException() { | |
21 super(); | |
22 } | |
23 | |
24 /** | |
25 * Constructor | |
26 * | |
27 * @param message | |
28 */ | |
29 public StateException(String message) { | |
30 super(message); | |
31 } | |
32 | |
33 /** | |
34 * Constructor | |
35 * | |
36 * @param cause | |
37 */ | |
38 public StateException(Throwable cause) { | |
39 super(cause); | |
40 } | |
41 | |
42 /** | |
43 * Constructor | |
44 * | |
45 * @param message | |
46 * @param cause | |
47 */ | |
48 public StateException(String message, Throwable cause) { | |
49 super(message, cause); | |
50 } | |
51 | |
52 } |