mirror of
https://github.com/langgenius/dify.git
synced 2026-03-04 23:36:20 +08:00
32 lines
562 B
Python
32 lines
562 B
Python
from dify_graph.nodes.base.exc import BaseNodeError
|
|
|
|
|
|
class ScheduleNodeError(BaseNodeError):
|
|
"""Base schedule node error."""
|
|
|
|
pass
|
|
|
|
|
|
class ScheduleNotFoundError(ScheduleNodeError):
|
|
"""Schedule not found error."""
|
|
|
|
pass
|
|
|
|
|
|
class ScheduleConfigError(ScheduleNodeError):
|
|
"""Schedule configuration error."""
|
|
|
|
pass
|
|
|
|
|
|
class ScheduleExecutionError(ScheduleNodeError):
|
|
"""Schedule execution error."""
|
|
|
|
pass
|
|
|
|
|
|
class TenantOwnerNotFoundError(ScheduleExecutionError):
|
|
"""Tenant owner not found error for schedule execution."""
|
|
|
|
pass
|