Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/statistics/exception/StatisticsException.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 | c4156275c1e1 |
children | f953c9a559d8 |
comparison
equal
deleted
inserted
replaced
722:bb3ffe7d719e | 875:5e9efdda6894 |
---|---|
1 package de.intevation.gnv.statistics.exception; | |
2 | |
3 /** | |
4 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | |
5 * | |
6 */ | |
7 public class StatisticsException extends Exception { | |
8 | |
9 /** | |
10 * | |
11 */ | |
12 private static final long serialVersionUID = -7324280565076343394L; | |
13 | |
14 /** | |
15 * Constructor | |
16 */ | |
17 public StatisticsException() { | |
18 } | |
19 | |
20 /** | |
21 * Constructor | |
22 * | |
23 * @param arg0 | |
24 */ | |
25 public StatisticsException(String arg0) { | |
26 super(arg0); | |
27 } | |
28 | |
29 /** | |
30 * Constructor | |
31 * | |
32 * @param arg0 | |
33 */ | |
34 public StatisticsException(Throwable arg0) { | |
35 super(arg0); | |
36 } | |
37 | |
38 /** | |
39 * Constructor | |
40 * | |
41 * @param arg0 | |
42 * @param arg1 | |
43 */ | |
44 public StatisticsException(String arg0, Throwable arg1) { | |
45 super(arg0, arg1); | |
46 } | |
47 | |
48 } |