comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/exception/TechnicalChartException.java @ 540:80630520e25a

merged gnv-artifacts/0.4
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Sep 2012 12:13:49 +0200
parents 7fb9441dd8af
children 79401c871da4
comparison
equal deleted inserted replaced
415:9f4a0b990d27 540:80630520e25a
1 /**
2 *
3 */
4 package de.intevation.gnv.chart.exception;
5
6 /**
7 * @author Tim Englich <tim.englich@intevation.de>
8 *
9 */
10 public class TechnicalChartException extends Exception {
11
12 /**
13 * The UID of this Class
14 */
15 private static final long serialVersionUID = -5325863742368006109L;
16
17 /**
18 * Constructor
19 */
20 public TechnicalChartException() {
21 }
22
23 /**
24 * Constructor
25 *
26 * @param message
27 */
28 public TechnicalChartException(String message) {
29 super(message);
30 }
31
32 /**
33 * Constructor
34 *
35 * @param cause
36 */
37 public TechnicalChartException(Throwable cause) {
38 super(cause);
39 }
40
41 /**
42 * Constructor
43 *
44 * @param message
45 * @param cause
46 */
47 public TechnicalChartException(String message, Throwable cause) {
48 super(message, cause);
49 }
50
51 }

http://dive4elements.wald.intevation.org