com.github.phenomics.ontolib.ser.SerializationRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontolib-core Show documentation
Show all versions of ontolib-core Show documentation
ontolib-core contains the core functionality for representing ontologies
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