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