01: package org.springunit.examples;
02:
03: public class DateOverflowException extends Exception {
04:
05: /**
06: *
07: */
08: private static final long serialVersionUID = 6097547615548692875L;
09:
10: public DateOverflowException() {
11: super ();
12: }
13:
14: public DateOverflowException(String message) {
15: super (message);
16: }
17:
18: public DateOverflowException(String message, Throwable cause) {
19: super (message, cause);
20: }
21:
22: public DateOverflowException(Throwable cause) {
23: super(cause);
24: }
25:
26: }
|