From ea9b12465c90fc72c40f3bd87c90785dfc2984e2 Mon Sep 17 00:00:00 2001
From: huliguo <2023611923@qq.com>
Date: 星期三, 30 四月 2025 14:57:23 +0800
Subject: [PATCH] 基础代码

---
 src/main/java/com/cl/common/exception/user/LoginErrorException.java |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/cl/common/exception/user/LoginErrorException.java b/src/main/java/com/cl/common/exception/user/LoginErrorException.java
new file mode 100644
index 0000000..0ba91db
--- /dev/null
+++ b/src/main/java/com/cl/common/exception/user/LoginErrorException.java
@@ -0,0 +1,13 @@
+package com.cl.common.exception.user;
+
+import com.cl.common.exception.BaseException;
+
+/**
+ * 登录失败
+ */
+public class LoginErrorException extends BaseException {
+    public LoginErrorException(){}
+    public LoginErrorException(String msg){
+        super(msg);
+    }
+}
\ No newline at end of file

--
Gitblit v1.7.1