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

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

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

/**
 * 系统异常
 *
 * @author joe
 */
public class SystemException extends RuntimeException {
    public SystemException() {
        super();
    }

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

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

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

    protected SystemException(String message, Throwable cause, boolean enableSuppression,
                              boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy