01: package org.emforge.projectmanager;
02:
03: import org.springframework.core.NestedRuntimeException;
04:
05: /** Exception, used for nitification about problems, occured in ProjectService
06: *
07: */
08: public class ProjectServiceException extends NestedRuntimeException {
09: private static final long serialVersionUID = 3068654364870385688L;
10:
11: public ProjectServiceException(String msg, Throwable t) {
12: super (msg, t);
13: }
14:
15: public ProjectServiceException(String msg) {
16: super(msg);
17: }
18: }
|