自定义订单异常
This commit is contained in:
@@ -113,6 +113,14 @@ public class CzgControllerAdvice {
|
||||
return CzgResult.failure(ex.getCode(), ex.getMsg());
|
||||
}
|
||||
|
||||
@ResponseBody
|
||||
@ExceptionHandler(OrderValidateException.class)
|
||||
@ResponseStatus(HttpStatus.OK)
|
||||
public CzgResult<Object> handleOrderValidateException(OrderValidateException ex) {
|
||||
log.error("订单校验异常:{}", ex.getMessage());
|
||||
return CzgResult.failure(ex.getCode(), ex.getMsg());
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付成功
|
||||
* 支付金额为零的统一处理
|
||||
@@ -127,7 +135,7 @@ public class CzgControllerAdvice {
|
||||
*/
|
||||
@ExceptionHandler(OrderCancelException.class)
|
||||
public CzgResult<Object> handleOrderCancelException() {
|
||||
return CzgResult.failure(701,"订单已过期,请重新下单");
|
||||
return CzgResult.failure(701, "订单已过期,请重新下单");
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -155,6 +163,6 @@ public class CzgControllerAdvice {
|
||||
|
||||
private void setErrorLog(Exception ex) {
|
||||
log.error(ex.getMessage());
|
||||
log.error("错误",ex);
|
||||
log.error("错误", ex);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user