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

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

Go to download

A java library for converting obo format documents to OWL, and for converting (a subset of) OWL to obo format. This version has been slightly modified to be included directly in the OWL API. The upstream code for this module and its authors can be found at https://code.google.com/p/oboformat/.

The newest version!
package org.obolibrary.oboformat.parser;

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

    /**
     * Instantiates a new invalid xref map exception.
     */
    public InvalidXrefMapException() {
        super();
    }

    /**
     * Instantiates a new invalid xref map exception.
     *
     * @param message the message
     * @param e the e
     */
    public InvalidXrefMapException(String message, Throwable e) {
        super(message, e);
    }

    /**
     * Instantiates a new invalid xref map exception.
     *
     * @param message the message
     */
    public InvalidXrefMapException(String message) {
        super(message);
    }

    /**
     * Instantiates a new invalid xref map exception.
     *
     * @param e the e
     */
    public InvalidXrefMapException(Throwable e) {
        super(e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy