KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openuss > presentation > enhydra > framework > BasePOException


1 /**
2  * Title: OpenUSS - Open Source University Support System
3  * Description: BaseException Presentation Object
4  * Copyright: Copyright (c) B. Lofi Dewanto
5  * Company: University of Muenster
6  * @author B. Lofi Dewanto
7  * @version 1.0
8  */

9 package org.openuss.presentation.enhydra.framework;
10
11 import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
12
13 import com.lutris.util.ChainedException;
14
15
16 /**
17  * The base exception presentation object for Enhydra.
18  *
19  * @author B. Lofi Dewanto
20  * @version 1.0
21  */

22 public class BasePOException extends HttpPresentationException {
23     /**
24      * Public constructor to initialize an exception with a user message
25      * and the exception that spawned it
26      */

27     public BasePOException(String JavaDoc msg, Exception JavaDoc ex) {
28         super(msg, ex);
29     }
30 }
Popular Tags