![JAR search and dependency download from the Maven repository](/logo.png)
org.monarchinitiative.phenol.io.ser.SerializationRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phenol-io Show documentation
Show all versions of phenol-io Show documentation
phenol-io contains the generic I/O functionality for ontologies
package org.monarchinitiative.phenol.io.ser;
import org.monarchinitiative.phenol.base.PhenolRuntimeException;
/**
* Unchecked exception thrown on problems with data serialization and deserialization.
*
* @author Manuel Holtgrewe
*/
public class SerializationRuntimeException extends PhenolRuntimeException {
/** 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