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

com.joe.easysocket.server.common.exception.SerializeException Maven / Gradle / Ivy

The newest version!
package com.joe.easysocket.server.common.exception;

/**
 * 序列化异常
 *
 * @author joe
 */
public class SerializeException extends SystemException {
    public SerializeException() {
        super();
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy