comparison gnv-artifacts/src/main/java/de/intevation/gnv/state/exception/StateException.java @ 778:9a828e5a2390

Removed trailing whitespace gnv-artifacts/trunk@851 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 29 Mar 2010 07:58:51 +0000
parents e964a3d8f7bc
children b1f5f2a8840f
comparison
equal deleted inserted replaced
777:8009961db1cb 778:9a828e5a2390
3 */ 3 */
4 package de.intevation.gnv.state.exception; 4 package de.intevation.gnv.state.exception;
5 5
6 /** 6 /**
7 * @author Tim Englich <tim.englich@intevation.de> 7 * @author Tim Englich <tim.englich@intevation.de>
8 * 8 *
9 */ 9 */
10 public class StateException extends Exception { 10 public class StateException extends Exception {
11 11
12 /** 12 /**
13 * The UID of the Class 13 * The UID of the Class
21 super(); 21 super();
22 } 22 }
23 23
24 /** 24 /**
25 * Constructor 25 * Constructor
26 * 26 *
27 * @param message 27 * @param message
28 */ 28 */
29 public StateException(String message) { 29 public StateException(String message) {
30 super(message); 30 super(message);
31 } 31 }
32 32
33 /** 33 /**
34 * Constructor 34 * Constructor
35 * 35 *
36 * @param cause 36 * @param cause
37 */ 37 */
38 public StateException(Throwable cause) { 38 public StateException(Throwable cause) {
39 super(cause); 39 super(cause);
40 } 40 }
41 41
42 /** 42 /**
43 * Constructor 43 * Constructor
44 * 44 *
45 * @param message 45 * @param message
46 * @param cause 46 * @param cause
47 */ 47 */
48 public StateException(String message, Throwable cause) { 48 public StateException(String message, Throwable cause) {
49 super(message, cause); 49 super(message, cause);

http://dive4elements.wald.intevation.org