springboot @ControllerAdvice处理异常无法正确匹配自定义异常
Controller 抛出异常无法匹配:
1、 throw new BasicException();可以匹配;
2、 throw new RuntimeException();无法匹配;
是哪里写错了吗?以下是部分代码
控制器Web接口异常处理类 ExceptionHandler:
@ExceptionHandler(BasicException.class) //自定义数据异常
@ResponseStatus(HttpStatus.BAD_REQUEST)
@ResponseBody
public ResultDataView<?> BasicException(BasicException e) {
log.error(e.getErrMsg());
return ResultDataView.failure(e.getErrMsg());
}
自定义异常类:
public class BasicException extends RuntimeException {
private static final long serialVersionUID = -2789674242371703555L;
protected String errMsg;
public BasicException() {
}
public BasicException(String errMsg) {
this.errMsg = errMsg;
}
public String getErrMsg() {
return errMsg;
}
public void setErrMsg(String errMsg) {
this.errMsg = errMsg;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目测没写专门匹配RuntimeException的方法啊,所以就没有喽