懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 /**
2  * Copyright 2018-2020 stylefeng & fengshuonan (https://gitee.com/stylefeng)
3  * <p>
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * <p>
8  * http://www.apache.org/licenses/LICENSE-2.0
9  * <p>
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package cn.stylefeng.guns.sys.core.exception.oauth;
17
18 import cn.stylefeng.roses.kernel.model.exception.AbstractBaseExceptionEnum;
19
20 /**
21  * 第三方登录异常枚举
22  *
23  * @author fengshuonan
24  * @Date 2019/6/9 18:45
25  */
26 public enum OAuthExceptionEnum implements AbstractBaseExceptionEnum {
27
28     OPEN_ID_ALREADY_BIND(500, "当前openId已有人绑定!"),
29     OAUTH_RESPONSE_ERROR(400, "oauth server错误");
30
31     OAuthExceptionEnum(int code, String message) {
32         this.code = code;
33         this.message = message;
34     }
35
36     private Integer code;
37
38     private String message;
39
40     @Override
41     public Integer getCode() {
42         return code;
43     }
44
45     public void setCode(Integer code) {
46         this.code = code;
47     }
48
49     @Override
50     public String getMessage() {
51         return message;
52     }
53
54     public void setMessage(String message) {
55         this.message = message;
56     }
57 }