mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-10 11:26:52 +08:00
4 lines
123 B
Python
4 lines
123 B
Python
class BaseServiceError(Exception):
|
|
def __init__(self, description: str = None):
|
|
self.description = description
|