01: /*
02: * Created on Aug 10, 2004
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.jical;
08:
09: /**
10: * @author Stuart Guthrie
11: * @author David Wellington
12: *
13: * To change the template for this generated type comment go to
14: * Window>Preferences>Java>Code Generation>Code and Comments
15: */
16: public class ICalendarVEventException extends Exception {
17:
18: /**
19: * Constructor for CareProviderException.
20: */
21: public ICalendarVEventException() {
22: super ();
23: }
24:
25: /**
26: * Constructor for CareProviderException.
27: * @param message
28: */
29: public ICalendarVEventException(String message) {
30: super (message);
31: }
32:
33: /**
34: * Constructor for CareProviderException.
35: * @param message
36: * @param cause
37: */
38: public ICalendarVEventException(String message, Throwable cause) {
39: super (message, cause);
40: }
41:
42: /**
43: * Constructor for CareProviderException.
44: * @param cause
45: */
46: public ICalendarVEventException(Throwable cause) {
47: super(cause);
48: }
49:
50: }
|