admin
2021-05-25 43a604467d91ef42148bfb3b5526618e91ea4adc
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
28
29
30
package com.ks.lijin.exception;
 
import com.ks.lib.common.exception.BaseException;
 
/**
 * 礼金账号异常
 */
public class LiJinAccountException extends BaseException {
 
    // 淘礼金账户暂未创建
    public static final int CODE_TLJ_UN_PAID = 101;
    // 官方账户余额不足
    public static final int CODE_TLJ_NO_MONEY = 102;
 
 
    public LiJinAccountException(int code, String msg) {
        super(code, msg);
    }
 
    public LiJinAccountException() {
        super();
    }
 
 
    //屏蔽堆栈信息
    @Override
    public synchronized Throwable fillInStackTrace() {
        return this;
    }
}