支付状态 取消时

This commit is contained in:
2025-03-15 09:29:21 +08:00
parent 046ab99359
commit 434ffe3763
4 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
package com.czg.exception;
import java.io.Serial;
/**
* @author ww
* @description
*/
public class OrderCancelException extends RuntimeException{
@Serial
private static final long serialVersionUID = 1L;
public OrderCancelException(String message) {
super(message);
}
}