Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Severian/dify
Underground-Digital
/
Workflow-Engine
like
0
Build error
App
Files
Files
Community
main
Workflow-Engine
/
api
/
services
/
errors
/
base.py
Severian
initial commit
a8b3f00
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
163 Bytes
from
typing
import
Optional
class
BaseServiceError
(
Exception
):
def
__init__
(
self, description:
Optional
[
str
] =
None
):
self.description = description