01: package projectmanagement.presentation;
02:
03: import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
04: import com.lutris.util.ChainedException;
05:
06: /**
07: * ProjectManagement exception
08: *
09: * @author Sasa Bojanic
10: * @version 1.0
11: */
12: public class ProjectManagementPresentationException extends
13: HttpPresentationException {
14:
15: /**
16: * Public constructor to initialize an exception with a user message
17: * and an exception chain to follow
18: */
19: public ProjectManagementPresentationException(String msg,
20: Exception ex) {
21: super(msg, ex);
22: }
23: }
|