mirror of
https://github.com/langgenius/dify.git
synced 2026-01-14 06:07:33 +08: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
|
|
"""
|