KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > pim > presentation > EnhydraPimPresentationException


1 /*
2  * Created on May 6, 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.presentation;
8
9 import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
10
11 /**
12  * @author P.Djojic May 6, 2005 12:38:21 AM
13  *
14  * TODO EnhydraPimPresentationException
15  */

16 public class EnhydraPimPresentationException extends HttpPresentationException {
17
18
19     /**
20      * @param message
21      */

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

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

39     public EnhydraPimPresentationException(String JavaDoc message, Throwable JavaDoc cause) {
40         super(message, cause);
41         // TODO Auto-generated constructor stub
42
}
43
44 }
45
Popular Tags