1
2
3
4
5
6
7
8
9
10
11
12
| package com.ks.goldcorn.exception;
|
| import com.ks.lib.common.exception.BaseException;
|
| public class GoldTradeException extends BaseException {
| public final static int CODE_ADD_RECORD_FAIL = 20001;//添加记录失败
| public final static int CODE_BALANCE_NOT_ENOUGH = 20002;//余额不足
|
| public GoldTradeException(int code, String msg) {
| super(code, msg);
| }
| }
|
|