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

org.monarchinitiative.phenol.io.base.TermAnnotationParserException Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.monarchinitiative.phenol.io.base;

/**
 * Thrown in case of problems with parsing term annotation files.
 *
 * @author Manuel Holtgrewe
 */
public class TermAnnotationParserException extends Exception {

  /** Serial UId for serialization. */
  private static final long serialVersionUID = 1L;

  /**
   * Constructor.
   *
   * @param message Message for exception.
   * @param cause Causing underlying exception.
   */
  public TermAnnotationParserException(String message, Throwable cause) {
    super(message, cause);
  }

  /**
   * Constructor.
   *
   * @param message Message for exception.
   */
  public TermAnnotationParserException(String message) {
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy