ProjectServiceException.java :  » Project-Management » EmForce » org » emforge » projectmanager » Java Open Source

Java Open Source » Project Management » EmForce 
EmForce » org » emforge » projectmanager » ProjectServiceException.java
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);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.