KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > projectmanagement > business > ProjectManagementBusinessException


1 package projectmanagement.business;
2
3 import projectmanagement.spec.*;;
4 /**
5  * ProjectManagementBusinessException.
6  * @author Sasa Bojanic
7  * @version 1.0
8  */

9 public class ProjectManagementBusinessException extends ProjectManagementException {
10
11    /**
12     * Public constructor to initialize an exception with a user message
13     * and the exception that spawned it
14     */

15    public ProjectManagementBusinessException(String JavaDoc msg, Throwable JavaDoc ex) {
16       super(msg, ex);
17    }
18
19    /**
20     * Public constructor to initialize an exception with a user message
21     */

22    public ProjectManagementBusinessException(String JavaDoc msg) {
23       super(msg);
24    }
25 }
26
Popular Tags