KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jical > ICalendarVEventException


1 /*
2  * Created on Aug 10, 2004
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

7 package org.jical;
8
9 /**
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 JavaDoc
17 {
18
19     /**
20      * Constructor for CareProviderException.
21      */

22     public ICalendarVEventException()
23     {
24         super();
25     }
26
27     /**
28      * Constructor for CareProviderException.
29      * @param message
30      */

31     public ICalendarVEventException(String JavaDoc message)
32     {
33         super(message);
34     }
35
36     /**
37      * Constructor for CareProviderException.
38      * @param message
39      * @param cause
40      */

41     public ICalendarVEventException(String JavaDoc message, Throwable JavaDoc cause)
42     {
43         super(message, cause);
44     }
45
46     /**
47      * Constructor for CareProviderException.
48      * @param cause
49      */

50     public ICalendarVEventException(Throwable JavaDoc cause)
51     {
52         super(cause);
53     }
54
55 }
56
Popular Tags