com.github.phenomics.ontolib.ser.SerializationException 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.OntoLibException;
/**
* Thrown on problems with data serialization and deserialization.
*
* @author Manuel Holtgrewe
*/
public class SerializationException extends OntoLibException {
/** Serial UID for serialization. */
private static final long serialVersionUID = 1L;
/**
* Constructor.
*
* @param message Exception message.
* @param cause Underlying {@link Throwable}.
*/
public SerializationException(String message, Throwable cause) {
super(message, cause);
}
/**
* Constructor.
*
* @param message Exception message.
*/
public SerializationException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy