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;
|
}
|
}
|