You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
790 B
28 lines
790 B
/** |
|
* Copyright (C) 2018-2022 |
|
* All rights reserved, Designed By www.yixiang.co |
|
* 注意: |
|
* 本软件为www.yixiang.co开发研制,未经购买不得使用 |
|
* 购买后可获得全部源代码(禁止转卖、分享、上传到码云、github等开源平台) |
|
* 一经发现盗用、分享等行为,将追究法律责任,后果自负 |
|
*/ |
|
package co.yixiang.api; |
|
|
|
/** |
|
* 认证异常 |
|
* @author hupeng |
|
* @date 2020-04-30 |
|
*/ |
|
public class UnAuthenticatedException extends YshopException { |
|
public UnAuthenticatedException(String message) { |
|
super(message); |
|
} |
|
|
|
public UnAuthenticatedException(Integer errorCode, String message) { |
|
super(errorCode, message); |
|
} |
|
|
|
public UnAuthenticatedException(ApiCode apiCode) { |
|
super(apiCode); |
|
} |
|
}
|
|
|