admin
2021-05-15 6d29a32259f3f5e896b26db27d29f616203127ca
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
package com.ks.lijin.exception;
 
import com.ks.lib.common.exception.BaseException;
 
public class LiJinException extends BaseException {
    // 淘礼金账户暂未创建
    public static final int CODE_TLJ_UN_PAID = 100;
    //商品不支持创建淘礼金
    public static final int CODE_TLJ_FORBIDDEN = 101;
    // 官方账户余额不足
    public static final int CODE_TLJ_NO_MONEY = 102;
 
 
    public LiJinException(int code, String msg) {
        super(code, msg);
    }
 
    public LiJinException() {
        super();
    }
 
 
    //屏蔽堆栈信息
    @Override
    public synchronized Throwable fillInStackTrace() {
        return this;
    }
}