提交 | 用户 | 时间 | ||
1ac2bc | 1 | package cn.stylefeng.guns.sys.core.exception.oauth; |
懒 | 2 | |
3 | import cn.stylefeng.roses.kernel.model.exception.AbstractBaseExceptionEnum; | |
4 | import cn.stylefeng.roses.kernel.model.exception.ServiceException; | |
5 | ||
6 | /** | |
7 | * 第三方登录异常 | |
8 | * | |
9 | * @author fengshuonan | |
10 | * @Date 2019/6/9 18:43 | |
11 | */ | |
12 | public class OAuthLoginException extends ServiceException { | |
13 | ||
14 | public OAuthLoginException(AbstractBaseExceptionEnum exception) { | |
15 | super(exception); | |
16 | } | |
17 | ||
18 | } |