Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/transition/exception/TransitionException.java @ 127:f6f0e4ce4a35
merged gnv-artifacts/0.1
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:41 +0200 |
parents | f01592cd6419 |
children | 7fb9441dd8af |
comparison
equal
deleted
inserted
replaced
49:94a07d1d9316 | 127:f6f0e4ce4a35 |
---|---|
1 /** | |
2 * | |
3 */ | |
4 package de.intevation.gnv.transition.exception; | |
5 /** | |
6 * @author Tim Englich <tim.englich@intevation.de> | |
7 * | |
8 */ | |
9 public class TransitionException extends Exception { | |
10 | |
11 /** | |
12 * The UID of the Class | |
13 */ | |
14 private static final long serialVersionUID = -1635921702746050244L; | |
15 | |
16 /** | |
17 * Constructor | |
18 */ | |
19 public TransitionException() { | |
20 super(); | |
21 } | |
22 | |
23 /** | |
24 * Constructor | |
25 * @param message | |
26 */ | |
27 public TransitionException(String message) { | |
28 super(message); | |
29 } | |
30 | |
31 /** | |
32 * Constructor | |
33 * @param cause | |
34 */ | |
35 public TransitionException(Throwable cause) { | |
36 super(cause); | |
37 } | |
38 | |
39 /** | |
40 * Constructor | |
41 * @param message | |
42 * @param cause | |
43 */ | |
44 public TransitionException(String message, Throwable cause) { | |
45 super(message, cause); | |
46 } | |
47 | |
48 } |