mirror of
https://github.com/langgenius/dify.git
synced 2026-05-19 16:27:17 +08:00
4 lines
122 B
Python
4 lines
122 B
Python
class BaseServiceError(ValueError):
|
|
def __init__(self, description: str = ""):
|
|
self.description = description
|