进行统一处理
对于项目中所有的的SellerException进行统一处理:
//拦截SellException
@ExceptionHandler(value = SellException.class)
@ResponseBody
public ResultVO handlerSellerException(SellException e){
return ResultVOUtils.failure(e.getMessage(),e.getCode());
}
}