
org.obolibrary.oboformat.parser.OBOFormatDanglingReferenceException Maven / Gradle / Ivy
package org.obolibrary.oboformat.parser;
/** The Class OBOFormatDanglingReferenceException. */
public class OBOFormatDanglingReferenceException extends OBOFormatException {
/** Instantiates a new oBO format dangling reference exception. */
public OBOFormatDanglingReferenceException() {
super();
}
/**
* 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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy