Files
qiaoxinjiu 6994b185a3 addproject
2026-01-22 19:10:37 +08:00

9 lines
306 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# -*- coding:utf-8 -*-
# 存放自定义异常类
class BusinessError(Exception):
"""功能用于AITA项目识别是业务异常需返给前端做展示"""
def __init__(self, message="这里是自定义的业务异常"):
self.message = message
super().__init__(self.message)