BaseRuntimeException自定义业务异常类实现

mac2022-06-30  24

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

最新回复(0)