External vocabulary service and integration of Agrovoc with work beginning for applying concept semantic type to UMLS concepts.
This commit is contained in:
parent
9fda9d2922
commit
2ea474b6ef
44 changed files with 1387 additions and 557 deletions
|
@ -0,0 +1,13 @@
|
|||
package edu.cornell.mannlib.semservices.exceptions;
|
||||
|
||||
public class ConceptsNotFoundException extends Exception {
|
||||
/**
|
||||
* An exception that indicates a service could not find a Concept
|
||||
*/
|
||||
private static final long serialVersionUID = -4729465393290022840L;
|
||||
public ConceptsNotFoundException() { }
|
||||
public ConceptsNotFoundException(String message) { super(message); }
|
||||
public ConceptsNotFoundException(Throwable cause) { super(cause); }
|
||||
public ConceptsNotFoundException(String message, Throwable cause) { super(message, cause); }
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue