package org.emforge.projectmanager;
import org.springframework.core.NestedRuntimeException;
/** Exception, used for nitification about problems, occured in ProjectService
*
*/
public class ProjectServiceException extends NestedRuntimeException {
private static final long serialVersionUID = 3068654364870385688L;
public ProjectServiceException(String msg, Throwable t) {
super(msg, t);
}
public ProjectServiceException(String msg) {
super(msg);
}
}
|