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