Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/exception/TechnicalChartException.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 | 79401c871da4 |
children | 2047f318e964 |
comparison
equal
deleted
inserted
replaced
777:8009961db1cb | 778:9a828e5a2390 |
---|---|
1 package de.intevation.gnv.chart.exception; | 1 package de.intevation.gnv.chart.exception; |
2 | 2 |
3 /** | 3 /** |
4 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | 4 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> |
5 * | 5 * |
6 */ | 6 */ |
7 public class TechnicalChartException extends Exception { | 7 public class TechnicalChartException extends Exception { |
8 | 8 |
9 /** | 9 /** |
10 * The UID of this Class | 10 * The UID of this Class |
17 public TechnicalChartException() { | 17 public TechnicalChartException() { |
18 } | 18 } |
19 | 19 |
20 /** | 20 /** |
21 * Constructor | 21 * Constructor |
22 * | 22 * |
23 * @param message | 23 * @param message |
24 */ | 24 */ |
25 public TechnicalChartException(String message) { | 25 public TechnicalChartException(String message) { |
26 super(message); | 26 super(message); |
27 } | 27 } |
28 | 28 |
29 /** | 29 /** |
30 * Constructor | 30 * Constructor |
31 * | 31 * |
32 * @param cause | 32 * @param cause |
33 */ | 33 */ |
34 public TechnicalChartException(Throwable cause) { | 34 public TechnicalChartException(Throwable cause) { |
35 super(cause); | 35 super(cause); |
36 } | 36 } |
37 | 37 |
38 /** | 38 /** |
39 * Constructor | 39 * Constructor |
40 * | 40 * |
41 * @param message | 41 * @param message |
42 * @param cause | 42 * @param cause |
43 */ | 43 */ |
44 public TechnicalChartException(String message, Throwable cause) { | 44 public TechnicalChartException(String message, Throwable cause) { |
45 super(message, cause); | 45 super(message, cause); |