
org.monarchinitiative.phenol.annotations.base.TermAnnotationParserException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phenol-annotations Show documentation
Show all versions of phenol-annotations Show documentation
phenol-annotation contains the annotation functionality for ontologies
package org.monarchinitiative.phenol.annotations.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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy