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

com.github.phenomics.ontolib.ser.SerializationRuntimeException Maven / Gradle / Ivy

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

import com.github.phenomics.ontolib.base.OntoLibRuntimeException;

/**
 * Unchecked exception thrown on problems with data serialization and deserialization.
 *
 * @author Manuel Holtgrewe
 */
public class SerializationRuntimeException extends OntoLibRuntimeException {

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

  /**
   * Constructor.
   *
   * @param message Exception message.
   * @param cause Underlying {@link Throwable}.
   */
  public SerializationRuntimeException(String message, Throwable cause) {
    super(message, cause);
  }

  /**
   * Constructor.
   *
   * @param message Exception message.
   */
  public SerializationRuntimeException(String message) {
    super(message);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy