comparison gnv-artifacts/src/main/java/de/intevation/gnv/transition/exception/TransitionException.java @ 57:f01592cd6419

Funktionalität Feed initial bereitgestellt. gnv-artifacts/trunk@39 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 08 Sep 2009 12:22:00 +0000
parents
children 7fb9441dd8af
comparison
equal deleted inserted replaced
56:737d8bf63701 57:f01592cd6419
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 }

http://dive4elements.wald.intevation.org