admin
2022-03-29 fac5d01bfcddfc8edef0a5fd3d401b1fe383fe16
1
2
3
4
5
6
7
8
9
10
11
12
package org.yeshi.utils.exception;
 
public class AlipayXcxException extends Exception {
    private String code;
    private String subMsg;
    private String body;
 
    public AlipayXcxException(String code, String subMsg, String body) {
        super(body);
    }
 
}