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

io.github.firefang.power.exception.InternalException Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
package io.github.firefang.power.exception;

/**
 * 服务器内部异常,当发生未知错误时抛出
 * 
 * @author xinufo
 *
 */
public class InternalException extends RuntimeException {
    private static final long serialVersionUID = 7457726878601223969L;

    public InternalException() {
        super();
    }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy