mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
bab4975809
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
4 lines
131 B
Python
4 lines
131 B
Python
class BaseServiceError(ValueError):
|
|
def __init__(self, description: str | None = None):
|
|
self.description = description
|