1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.ks.lijin.exception;
|
| import com.ks.lib.common.exception.BaseException;
|
| /**
| * 商品下架额异常
| */
| public class TaoBaoGoodsDownException extends BaseException {
|
| public TaoBaoGoodsDownException(int code, String msg) {
| super(code, msg);
| }
|
| public TaoBaoGoodsDownException() {
| super();
| }
|
|
| //屏蔽堆栈信息
| @Override
| public synchronized Throwable fillInStackTrace() {
| return this;
| }
| }
|
|