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

matrix.boot.common.exception.ResultControllerException Maven / Gradle / Ivy

There is a newer version: 2.1.11
Show newest version
package matrix.boot.common.exception;

/**
 * 返回为Result的Controller抛的异常
 * @author wangcheng
 * 2021/8/12
 **/
public class ResultControllerException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public ResultControllerException() {
        super();
    }

    public ResultControllerException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

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

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

    public ResultControllerException(Throwable cause) {
        super(cause.getMessage(), cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy