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

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

There is a newer version: 5.5.1
Show 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