addproject

This commit is contained in:
qiaoxinjiu
2026-01-22 19:10:37 +08:00
commit 6994b185a3
184 changed files with 21039 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# -*- coding:utf-8 -*-
# 存放自定义异常类
class BusinessError(Exception):
"""功能用于AITA项目识别是业务异常需返给前端做展示"""
def __init__(self, message="这里是自定义的业务异常"):
self.message = message
super().__init__(self.message)