From 5d7b65670282a4fad015e37d567cfa171b162052 Mon Sep 17 00:00:00 2001
From: huliguo <2023611923@qq.com>
Date: 星期二, 20 五月 2025 12:25:19 +0800
Subject: [PATCH] 基础代码

---
 pt-common/src/main/java/com/ruoyi/common/exception/BaseException.java |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/pt-common/src/main/java/com/ruoyi/common/exception/BaseException.java b/pt-common/src/main/java/com/ruoyi/common/exception/BaseException.java
new file mode 100644
index 0000000..8a92643
--- /dev/null
+++ b/pt-common/src/main/java/com/ruoyi/common/exception/BaseException.java
@@ -0,0 +1,15 @@
+package com.ruoyi.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