comparison gnv-artifacts/src/main/java/de/intevation/gnv/state/exception/StateException.java @ 335:e964a3d8f7bc

Some Refactoring work done. Moved Transition to State gnv-artifacts/trunk@401 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 08 Dec 2009 08:39:03 +0000
parents
children 9a828e5a2390
comparison
equal deleted inserted replaced
334:e37930705daa 335:e964a3d8f7bc
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 }

http://dive4elements.wald.intevation.org