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

com.github.phenomics.ontolib.base.OntoLibRuntimeException Maven / Gradle / Ivy

There is a newer version: 0.4
Show newest version
package com.github.phenomics.ontolib.base;

/**
 * Base class for unhandled exceptions thrown by OntoLib.
 *
 * @author Manuel Holtgrewe
 */
public class OntoLibRuntimeException extends RuntimeException {

  private static final long serialVersionUID = 1L;

  /**
   * Constructor.
   *
   * @param message Message of exception.
   * @param cause Causing {@link Throwable}.
   */
  public OntoLibRuntimeException(String message, Throwable cause) {
    super(message, cause);
  }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy