懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
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 }