mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-12-05 12:48:32 +08:00
3 lines
122 B
Python
3 lines
122 B
Python
class BaseServiceError(Exception):
|
|
def __init__(self, description: str = None):
|
|
self.description = description |