All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.obolibrary.oboformat.parser.OBOFormatException Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy