External vocabulary service and integration of Agrovoc with work beginning for applying concept semantic type to UMLS concepts.

This commit is contained in:
hudajkhan 2013-08-07 16:08:11 -04:00
parent 9fda9d2922
commit 2ea474b6ef
44 changed files with 1387 additions and 557 deletions

View file

@ -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); }
}