com.github.ddth.commons.serialization.SerDeserException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ddth-commons-core Show documentation
Show all versions of ddth-commons-core Show documentation
DDTH's Java Common Libraries and Utilities
package com.github.ddth.commons.serialization;
/**
* Thrown to indicate that there was an exception during serialization/deserialization.
*
* @author Thanh Nguyen
* @since 0.9.1
*/
public class SerDeserException extends RuntimeException {
private static final long serialVersionUID = 1L;
public SerDeserException() {
}
public SerDeserException(String message) {
super(message);
}
public SerDeserException(Throwable cause) {
super(cause);
}
public SerDeserException(String message, Throwable cause) {
super(message, cause);
}
public SerDeserException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy