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

com.cybermkd.common.util.serialize.SerializeException Maven / Gradle / Ivy

package com.cybermkd.common.util.serialize;

/**
 * DBException
 */
public class SerializeException extends RuntimeException {

    public SerializeException() {
    }

    public SerializeException(String message) {
        super(message);
    }

    public SerializeException(Throwable cause) {
        super(cause);
    }

    public SerializeException(String message, Throwable cause) {
        super(message, cause);
    }
}














© 2015 - 2024 Weber Informatics LLC | Privacy Policy