01: package projectmanagement.business;
02:
03: import projectmanagement.spec.*;
04:
05: ;
06: /**
07: * ProjectManagementBusinessException.
08: * @author Sasa Bojanic
09: * @version 1.0
10: */
11: public class ProjectManagementBusinessException extends
12: ProjectManagementException {
13:
14: /**
15: * Public constructor to initialize an exception with a user message
16: * and the exception that spawned it
17: */
18: public ProjectManagementBusinessException(String msg, Throwable ex) {
19: super (msg, ex);
20: }
21:
22: /**
23: * Public constructor to initialize an exception with a user message
24: */
25: public ProjectManagementBusinessException(String msg) {
26: super(msg);
27: }
28: }
|