admin
2022-01-12 c9fdff7d45ae118eac10397d8f34661e9f2e968a
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 LiJinAmountException extends BaseException {
    
    //礼金创建的金额超出规定范围
    public final static int CODE_LIJIN_AMOUNT_OUTOFRANGE = 3001;
 
 
    public LiJinAmountException(int code, String msg) {
        super(code, msg);
    }
 
    public LiJinAmountException() {
        super();
    }
 
 
    //屏蔽堆栈信息
    @Override
    public synchronized Throwable fillInStackTrace() {
        return this;
    }
}