Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/statistics/exception/StatisticsException.java @ 657:af3f56758f59
merged gnv-artifacts/0.5
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:53 +0200 |
parents | 7fb9441dd8af |
children | 9a828e5a2390 |
comparison
equal
deleted
inserted
replaced
590:5f5f273c8566 | 657:af3f56758f59 |
---|---|
1 /** | |
2 * | |
3 */ | |
4 package de.intevation.gnv.statistics.exception; | |
5 | |
6 /** | |
7 * @author Tim Englich <tim.englich@intevation.de> | |
8 * | |
9 */ | |
10 public class StatisticsException extends Exception { | |
11 | |
12 /** | |
13 * | |
14 */ | |
15 private static final long serialVersionUID = -7324280565076343394L; | |
16 | |
17 /** | |
18 * Constructor | |
19 */ | |
20 public StatisticsException() { | |
21 } | |
22 | |
23 /** | |
24 * Constructor | |
25 * | |
26 * @param arg0 | |
27 */ | |
28 public StatisticsException(String arg0) { | |
29 super(arg0); | |
30 } | |
31 | |
32 /** | |
33 * Constructor | |
34 * | |
35 * @param arg0 | |
36 */ | |
37 public StatisticsException(Throwable arg0) { | |
38 super(arg0); | |
39 } | |
40 | |
41 /** | |
42 * Constructor | |
43 * | |
44 * @param arg0 | |
45 * @param arg1 | |
46 */ | |
47 public StatisticsException(String arg0, Throwable arg1) { | |
48 super(arg0, arg1); | |
49 } | |
50 | |
51 } |