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