org.monarchinitiative.phenol.io.base.TermAnnotationParserException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phenol-io Show documentation
Show all versions of phenol-io Show documentation
phenol-io contains the generic I/O functionality for ontologies
package org.monarchinitiative.phenol.io.base;
/**
* Thrown in case of problems with parsing term annotation files.
*
* @author Manuel Holtgrewe
*/
public class TermAnnotationParserException extends Exception {
/** Serial UId for serialization. */
private static final long serialVersionUID = 1L;
/**
* Constructor.
*
* @param message Message for exception.
* @param cause Causing underlying exception.
*/
public TermAnnotationParserException(String message, Throwable cause) {
super(message, cause);
}
/**
* Constructor.
*
* @param message Message for exception.
*/
public TermAnnotationParserException(String message) {
super(message);
}
}