com.github.ddth.commons.serialization.DeserializationException 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 deserialization.
*
* @author Thanh Nguyen
* @since 0.5.0
*/
public class DeserializationException extends SerDeserException {
private static final long serialVersionUID = 1L;
public DeserializationException() {
}
public DeserializationException(String message) {
super(message);
}
public DeserializationException(Throwable cause) {
super(cause);
}
public DeserializationException(String message, Throwable cause) {
super(message, cause);
}
public DeserializationException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy