org.obolibrary.oboformat.parser.OBOFormatException Maven / Gradle / Ivy
package org.obolibrary.oboformat.parser;
import org.semanticweb.owlapi.io.OWLParserException;
/** The Class OBOFormatException. */
public class OBOFormatException extends OWLParserException {
// generated
private static final long serialVersionUID = 40000L;
/** Instantiates a new OBO format exception. */
public OBOFormatException() {}
/**
* Instantiates a new OBO format exception.
*
* @param message the message
*/
public OBOFormatException(String message) {
super(message);
}
/**
* Instantiates a new OBO format exception.
*
* @param e the e
*/
public OBOFormatException(Throwable e) {
super(e);
}
/**
* Instantiates a new OBO format exception.
*
* @param message the message
* @param e the e
*/
public OBOFormatException(String message, Throwable e) {
super(message, e);
}
}