BaseRuntimeException自定义业务异常类实现

public class BaseRuntimeException extends RuntimeException {
    private final int code;

    public BaseRuntimeException(StatusCode statusCode) {
        this(statusCode.getStatusCode(), statusCode.getStatusMessage());
    }

    public BaseRuntimeException(int code, String message) {
        super(message);
        this.code = code;
    }

    public int getCode() {
        return this.code;
    }
}
原文地址:https://www.cnblogs.com/shaozhiqi/p/8999486.html