mirror of
https://github.com/langgenius/dify.git
synced 2025-12-17 13:13:02 +00:00
20 lines
333 B
Python
20 lines
333 B
Python
|
|
from core.plugin.impl.exc import PluginInvokeError
|
||
|
|
|
||
|
|
|
||
|
|
class TriggerProviderCredentialValidationError(ValueError):
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
class TriggerPluginInvokeError(PluginInvokeError):
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
class TriggerInvokeError(PluginInvokeError):
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
class EventIgnoreError(TriggerInvokeError):
|
||
|
|
"""
|
||
|
|
Trigger event ignore error
|
||
|
|
"""
|