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