comparison gnv-artifacts/src/main/java/de/intevation/gnv/transition/exception/TransitionException.java @ 171:7fb9441dd8af

Format Code to max 80 Chars per Row and Cleanup gnv-artifacts/trunk@208 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 09 Oct 2009 07:54:48 +0000
parents f01592cd6419
children
comparison
equal deleted inserted replaced
170:7be22e76c270 171:7fb9441dd8af
1 /** 1 /**
2 * 2 *
3 */ 3 */
4 package de.intevation.gnv.transition.exception; 4 package de.intevation.gnv.transition.exception;
5
5 /** 6 /**
6 * @author Tim Englich <tim.englich@intevation.de> 7 * @author Tim Englich <tim.englich@intevation.de>
7 * 8 *
8 */ 9 */
9 public class TransitionException extends Exception { 10 public class TransitionException extends Exception {
10 11
11 /** 12 /**
12 * The UID of the Class 13 * The UID of the Class
20 super(); 21 super();
21 } 22 }
22 23
23 /** 24 /**
24 * Constructor 25 * Constructor
26 *
25 * @param message 27 * @param message
26 */ 28 */
27 public TransitionException(String message) { 29 public TransitionException(String message) {
28 super(message); 30 super(message);
29 } 31 }
30 32
31 /** 33 /**
32 * Constructor 34 * Constructor
35 *
33 * @param cause 36 * @param cause
34 */ 37 */
35 public TransitionException(Throwable cause) { 38 public TransitionException(Throwable cause) {
36 super(cause); 39 super(cause);
37 } 40 }
38 41
39 /** 42 /**
40 * Constructor 43 * Constructor
44 *
41 * @param message 45 * @param message
42 * @param cause 46 * @param cause
43 */ 47 */
44 public TransitionException(String message, Throwable cause) { 48 public TransitionException(String message, Throwable cause) {
45 super(message, cause); 49 super(message, cause);

http://dive4elements.wald.intevation.org