mirror of
https://github.com/langgenius/dify.git
synced 2025-11-08 23:43:20 +00:00
4 lines
131 B
Python
4 lines
131 B
Python
class BaseServiceError(ValueError):
|
|
def __init__(self, description: str | None = None):
|
|
self.description = description
|