From bf2f1ffb99634b8350539b28bd9d1f20b30a5aa1 Mon Sep 17 00:00:00 2001 From: huliguo <2023611923@qq.com> Date: 星期五, 09 五月 2025 17:29:13 +0800 Subject: [PATCH] 小bug修改 --- src/main/java/com/cl/common/exception/BaseException.java | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/cl/common/exception/BaseException.java b/src/main/java/com/cl/common/exception/BaseException.java new file mode 100644 index 0000000..858bbfe --- /dev/null +++ b/src/main/java/com/cl/common/exception/BaseException.java @@ -0,0 +1,15 @@ +package com.cl.common.exception; + +/** + * 业务异常 + */ +public class BaseException extends RuntimeException { + + public BaseException() { + } + + public BaseException(String msg) { + super(msg); + } + +} \ No newline at end of file -- Gitblit v1.7.1