KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * Created on Apr 21, 2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.enhydra.pim.exception;
8
9 /**
10  * @author P.Djojic Apr 21, 2005 12:50:29 AM
11  *
12  * TODO EnhydraPimDatabaseException
13  */

14 public class EnhydraPimDatabaseException extends EnhydraPimException {
15
16     /**
17      *
18      */

19     public EnhydraPimDatabaseException() {
20         super();
21     }
22
23     /**
24      * @param message
25      */

26     public EnhydraPimDatabaseException(String JavaDoc message) {
27         super(message);
28     }
29
30     /**
31      * @param message
32      * @param cause
33      */

34     public EnhydraPimDatabaseException(String JavaDoc message, Throwable JavaDoc cause) {
35         super(message, cause);
36     }
37
38     /**
39      * @param cause
40      */

41     public EnhydraPimDatabaseException(Throwable JavaDoc cause) {
42         super(cause);
43     }
44
45 }
46
Popular Tags