From f78e031742c021c9b78e3b9ce3293b14ce9ec26f Mon Sep 17 00:00:00 2001 From: wanggeng888 <450292408@qq.com> Date: Sat, 1 May 2021 23:19:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=BE=9D=E8=B5=96=E5=BC=82?= =?UTF-8?q?=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wgink/exceptions/DependencyException.java | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 basic-exception/src/main/java/ink/wgink/exceptions/DependencyException.java diff --git a/basic-exception/src/main/java/ink/wgink/exceptions/DependencyException.java b/basic-exception/src/main/java/ink/wgink/exceptions/DependencyException.java new file mode 100644 index 00000000..56646011 --- /dev/null +++ b/basic-exception/src/main/java/ink/wgink/exceptions/DependencyException.java @@ -0,0 +1,35 @@ +package ink.wgink.exceptions; + +import ink.wgink.exceptions.base.SystemException; + +/** + * When you feel like quitting. Think about why you started + * 当你想要放弃的时候,想想当初你为何开始 + * + * @ClassName: DependencyException + * @Description: 依赖异常 + * @Author: wanggeng + * @Date: 2021/5/1 11:11 下午 + * @Version: 1.0 + */ +public class DependencyException extends SystemException { + + public DependencyException() { + } + + public DependencyException(String message) { + super(message); + } + + public DependencyException(String message, boolean withMsg) { + super(message, withMsg); + } + + public DependencyException(String message, Throwable cause) { + super(message, cause); + } + + public DependencyException(Throwable cause) { + super(cause); + } +}