| | |
| | | package com.yeshi.fanli.exception.taobao;
|
| | |
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class TaoBaoTokenParseException extends BaseException {
|
| | |
|
| | | // 商品已下架
|
| | | public static int CODE_GOODS_OFFLINE = 10000;
|
| | | // 解析结果为空
|
| | | public static int CODE_NULL = 20011;
|
| | |
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | public TaoBaoTokenParseException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.exception.taobao; |
| | | |
| | | import com.yeshi.fanli.exception.BaseException; |
| | | |
| | | public class TaoBaoTokenParseException extends BaseException { |
| | | |
| | | // 商品已下架 |
| | | public static int CODE_GOODS_OFFLINE = 10000; |
| | | // 解析结果为空 |
| | | public static int CODE_NULL = 20011; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | public TaoBaoTokenParseException(int code, String msg) { |
| | | super(code, msg); |
| | | } |
| | | |
| | | } |