edu.stanford.protege.webprotege.project.ProjectDocumentNotFoundException Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.project;
import edu.stanford.protege.webprotege.common.ProjectId;
/**
* Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 13/05/2012
*
* Describes the situation where the project document cannot be found on the webprotege.
*
*/
public class ProjectDocumentNotFoundException extends RuntimeException {
private final ProjectId projectId;
public ProjectDocumentNotFoundException(ProjectId projectId) {
super("Project Not Found (" + projectId + ")");
this.projectId = projectId;
}
public ProjectId getProjectId() {
return projectId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy