KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > projectmanagement > presentation > ProjectManagementPresentationException


1 package projectmanagement.presentation;
2
3 import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
4 import com.lutris.util.ChainedException;
5
6 /**
7  * ProjectManagement exception
8  *
9  * @author Sasa Bojanic
10  * @version 1.0
11  */

12 public class ProjectManagementPresentationException extends HttpPresentationException {
13
14     /**
15      * Public constructor to initialize an exception with a user message
16      * and an exception chain to follow
17      */

18     public ProjectManagementPresentationException(String JavaDoc msg, Exception JavaDoc ex) {
19         super(msg, ex);
20     }
21 }
22
Popular Tags