comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/exception/TechnicalChartException.java @ 67:0e9762ebd18d

Refactor ChartFactory so that it is able to be compiled without errors. gnv-artifacts/trunk@50 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Wed, 09 Sep 2009 13:14:12 +0000
parents
children 7fb9441dd8af
comparison
equal deleted inserted replaced
66:bf883222b675 67:0e9762ebd18d
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 }

http://dive4elements.wald.intevation.org