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