懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 /*
2 Copyright [2020] [https://www.stylefeng.cn]
3
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
8   http://www.apache.org/licenses/LICENSE-2.0
9
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 Guns采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
17
18 1.请不要删除和修改根目录下的LICENSE文件。
19 2.请不要删除和修改Guns源码头部的版权声明。
20 3.请保留源码和相关描述文件的项目出处,作者声明等。
21 4.分发源码时候,请注明软件出处 https://gitee.com/stylefeng/guns-separation
22 5.在修改包名,模块名称,项目代码等时,请注明软件出处 https://gitee.com/stylefeng/guns-separation
23 6.若您的项目无法满足以上几点,可申请商业授权,获取Guns商业授权许可,请在官网购买授权,地址为 https://www.stylefeng.cn
24  */
25 package cn.stylefeng.guns.sys.core.exception;
26
27 import cn.stylefeng.roses.kernel.model.exception.ServiceException;
28 import lombok.Getter;
29
30 /**
31  * 演示环境,无法操作的异常
32  *
33  * @author stylefeng
34  * @date 2020/5/5 12:22
35  */
36 @Getter
37 public class DemoException extends ServiceException {
38
39     private static final int DEMO_EXP_CODE = 14000;
40
41     private static final String DEMO_EXP_ERROR_MESSAGE = "演示环境,无法操作!";
42
43     public DemoException() {
44         super(DEMO_EXP_CODE, DEMO_EXP_ERROR_MESSAGE);
45     }
46
47 }