KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openedit > repository > RepositoryException


1 /*
2  * Created on Feb 12, 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.openedit.repository;
8
9 import com.openedit.OpenEditException;
10
11 /**
12  * @author avery
13  *
14  * To change the template for this generated type comment go to
15  * Window>Preferences>Java>Code Generation>Code and Comments
16  */

17 public class RepositoryException extends OpenEditException
18 {
19
20     /**
21      * Comment for <code>serialVersionUID</code>
22      */

23     private static final long serialVersionUID = -4616794535797112530L;
24
25     /**
26      *
27      */

28     public RepositoryException()
29     {
30         super();
31         // TODO Auto-generated constructor stub
32
}
33
34     /**
35      * @param message
36      */

37     public RepositoryException(String JavaDoc message)
38     {
39         super(message);
40         // TODO Auto-generated constructor stub
41
}
42
43     /**
44      * @param cause
45      */

46     public RepositoryException(Throwable JavaDoc cause)
47     {
48         super(cause);
49         // TODO Auto-generated constructor stub
50
}
51
52     /**
53      * @param message
54      * @param cause
55      */

56     public RepositoryException(String JavaDoc message, Throwable JavaDoc cause)
57     {
58         super(message, cause);
59         // TODO Auto-generated constructor stub
60
}
61
62 }
63
Popular Tags