comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/exception/TechnicalChartException.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 0e9762ebd18d
children 79401c871da4
comparison
equal deleted inserted replaced
170:7be22e76c270 171:7fb9441dd8af
1 /** 1 /**
2 * 2 *
3 */ 3 */
4 package de.intevation.gnv.chart.exception; 4 package de.intevation.gnv.chart.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 TechnicalChartException extends Exception { 10 public class TechnicalChartException extends Exception {
10 11
11 /** 12 /**
12 * The UID of this Class 13 * The UID of this Class
19 public TechnicalChartException() { 20 public TechnicalChartException() {
20 } 21 }
21 22
22 /** 23 /**
23 * Constructor 24 * Constructor
25 *
24 * @param message 26 * @param message
25 */ 27 */
26 public TechnicalChartException(String message) { 28 public TechnicalChartException(String message) {
27 super(message); 29 super(message);
28 } 30 }
29 31
30 /** 32 /**
31 * Constructor 33 * Constructor
34 *
32 * @param cause 35 * @param cause
33 */ 36 */
34 public TechnicalChartException(Throwable cause) { 37 public TechnicalChartException(Throwable cause) {
35 super(cause); 38 super(cause);
36 } 39 }
37 40
38 /** 41 /**
39 * Constructor 42 * Constructor
43 *
40 * @param message 44 * @param message
41 * @param cause 45 * @param cause
42 */ 46 */
43 public TechnicalChartException(String message, Throwable cause) { 47 public TechnicalChartException(String message, Throwable cause) {
44 super(message, cause); 48 super(message, cause);

http://dive4elements.wald.intevation.org