mirror of
https://github.com/langgenius/dify.git
synced 2026-09-05 00:31:19 +08:00
10 lines
220 B
Python
10 lines
220 B
Python
class AppGenerateError(ValueError):
|
|
"""Base class for application-generation errors with a stable response contract."""
|
|
|
|
error_code: str
|
|
status_code: int
|
|
|
|
|
|
class GenerateTaskStoppedError(Exception):
|
|
pass
|