mirror of
https://github.com/langgenius/dify.git
synced 2026-03-04 15:26:21 +08:00
11 lines
245 B
Python
11 lines
245 B
Python
class TriggerEventNodeError(ValueError):
|
|
"""Base exception for plugin trigger node errors."""
|
|
|
|
pass
|
|
|
|
|
|
class TriggerEventParameterError(TriggerEventNodeError):
|
|
"""Exception raised for errors in plugin trigger parameters."""
|
|
|
|
pass
|