From 6a9b2e27e2d816ce3899291ad6a14d267c5be3c4 Mon Sep 17 00:00:00 2001 From: wanggeng888 <450292408@qq.com> Date: Thu, 8 Apr 2021 22:50:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E9=85=8D=E7=BD=AE=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wgink/exceptions/PropertiesException.java | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 basic-exception/src/main/java/ink/wgink/exceptions/PropertiesException.java diff --git a/basic-exception/src/main/java/ink/wgink/exceptions/PropertiesException.java b/basic-exception/src/main/java/ink/wgink/exceptions/PropertiesException.java new file mode 100644 index 00000000..62997e3b --- /dev/null +++ b/basic-exception/src/main/java/ink/wgink/exceptions/PropertiesException.java @@ -0,0 +1,36 @@ +package ink.wgink.exceptions; + +import ink.wgink.exceptions.base.SystemException; + +/** + * When you feel like quitting. Think about why you started + * 当你想要放弃的时候,想想当初你为何开始 + * + * @ClassName: PropertiesException + * @Description: 属性异常 + * @Author: wanggeng + * @Date: 2021/4/8 5:22 下午 + * @Version: 1.0 + */ +public class PropertiesException extends SystemException { + + public PropertiesException() { + } + + public PropertiesException(String message) { + super(message); + } + + public PropertiesException(String message, boolean withMsg) { + super(message, withMsg); + } + + public PropertiesException(String message, Throwable cause) { + super(message, cause); + } + + public PropertiesException(Throwable cause) { + super(cause); + } + +}