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