1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.walker.pay.exception;
|
| import com.walker.pay.PayException;
|
| /**
| * 结果通知异常定义。<p></p>
| * 包括: 订单支付通知、退款通知等。
| * @date 2023-01-16
| */
| public class NotifyException extends PayException {
|
| public NotifyException(String orderId, Throwable caution) {
| super(orderId, caution);
| }
|
| public NotifyException(String orderId, String msg, Throwable caution) {
| super(orderId, msg, caution);
| }
|
| }
|
|