Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/exception/TechnicalChartException.java @ 875:5e9efdda6894
merged gnv-artifacts/1.0
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:56 +0200 |
parents | 05bf8534a35a |
children | f953c9a559d8 |
comparison
equal
deleted
inserted
replaced
722:bb3ffe7d719e | 875:5e9efdda6894 |
---|---|
1 package de.intevation.gnv.chart.exception; | |
2 | |
3 /** | |
4 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | |
5 * | |
6 */ | |
7 public class TechnicalChartException extends Exception { | |
8 | |
9 /** | |
10 * The UID of this Class | |
11 */ | |
12 private static final long serialVersionUID = -5325863742368006109L; | |
13 | |
14 /** | |
15 * Constructor | |
16 */ | |
17 public TechnicalChartException() { | |
18 } | |
19 | |
20 /** | |
21 * Constructor | |
22 * | |
23 * @param message | |
24 */ | |
25 public TechnicalChartException(String message) { | |
26 super(message); | |
27 } | |
28 | |
29 /** | |
30 * Constructor | |
31 * | |
32 * @param cause | |
33 */ | |
34 public TechnicalChartException(Throwable cause) { | |
35 super(cause); | |
36 } | |
37 | |
38 /** | |
39 * Constructor | |
40 * | |
41 * @param message | |
42 * @param cause | |
43 */ | |
44 public TechnicalChartException(String message, Throwable cause) { | |
45 super(message, cause); | |
46 } | |
47 | |
48 } | |
49 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |