admin
2021-06-02 4cdf9b0fdce6d2d7b4ca79055816661b88ac4d5c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.ks.vip.exception;
 
import com.ks.lib.common.exception.BaseException;
 
public class OrderPayException extends BaseException {
 
 
    //已经支付
    public final static int CODE_ALREADY_PAY = 10001;
 
    //创建支付订单失败
    public final static int CODE_CREATE_PAY_ORDER_FAIL = 20001;
 
    public OrderPayException(int code, String msg) {
        super(code, msg);
    }
 
    public OrderPayException() {
        super();
    }
 
 
    @Override
    public synchronized Throwable fillInStackTrace() {
        return this;
    }
}