KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > pim > exception > EnhydraPimLogicException


1 package org.enhydra.pim.exception;
2
3 /**
4  * @author P.Djojic Apr 21, 2005 1:39:10 AM
5  *
6  * TODO EnhydraPimLogicException
7  */

8 public class EnhydraPimLogicException extends EnhydraPimException {
9
10     /**
11      *
12      */

13     public EnhydraPimLogicException() {
14         super();
15         // TODO Auto-generated constructor stub
16
}
17
18     /**
19      * @param message
20      */

21     public EnhydraPimLogicException(String JavaDoc message) {
22         super(message);
23         // TODO Auto-generated constructor stub
24
}
25
26     /**
27      * @param message
28      * @param cause
29      */

30     public EnhydraPimLogicException(String JavaDoc message, Throwable JavaDoc cause) {
31         super(message, cause);
32         // TODO Auto-generated constructor stub
33
}
34
35     /**
36      * @param cause
37      */

38     public EnhydraPimLogicException(Throwable JavaDoc cause) {
39         super(cause);
40         // TODO Auto-generated constructor stub
41
}
42
43 }
44
Popular Tags