All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ddth.commons.serialization.SerDeserException Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
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