mirror of https://github.com/kortix-ai/suna.git
30 lines
399 B
Python
30 lines
399 B
Python
|
class TriggerError(Exception):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class ConfigurationError(TriggerError):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class ProviderError(TriggerError):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class TriggerNotFoundError(TriggerError):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class TriggerExecutionError(TriggerError):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class ProviderNotFoundError(ProviderError):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class ProviderSetupError(ProviderError):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class ValidationError(TriggerError):
|
||
|
pass
|