first init

This commit is contained in:
xingc
2025-02-18 14:26:47 +08:00
commit 48a02974fc
41 changed files with 2297 additions and 0 deletions

19
core/base/exceptions.py Normal file
View File

@@ -0,0 +1,19 @@
# -*- coding = utf-8 -*-
# @Time : 2025/2/16 下午10:05
# @File : exceptions.py
# @Software : PyCharm
# @Author : xingc
# @Desc :
class BaseException(Exception):
pass
class SearchCardNotFound(Exception):
"""搜索卡片不存在"""
pass
class SearchCardRetry(Exception):
"""搜索重试"""
pass