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.1
Show newest version
package org.obolibrary.oboformat.parser;

import org.semanticweb.owlapi.io.OWLParserException;

/**
 * The Class OBOFormatException.
 */
public class OBOFormatException extends OWLParserException {

    /**
     * Instantiates a new OBO format exception.
     */
    public OBOFormatException() {
        super();
    }

    /**
     * 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