matrix.boot.common.exception.ResultControllerException Maven / Gradle / Ivy
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);
}
}