mirror of https://github.com/kortix-ai/suna.git
18 lines
290 B
Python
18 lines
290 B
Python
|
class TemplateException(Exception):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class TemplateNotFoundError(TemplateException):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class TemplateAccessDeniedError(TemplateException):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class TemplateInstallationError(TemplateException):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class InvalidCredentialError(TemplateException):
|
||
|
pass
|