mirror of
https://github.com/langgenius/dify.git
synced 2025-11-09 16:03:39 +00:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
42 lines
672 B
Python
42 lines
672 B
Python
from core.tools.entities.tool_entities import ToolInvokeMeta
|
|
|
|
|
|
class ToolProviderNotFoundError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolNotFoundError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolParameterValidationError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolProviderCredentialValidationError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolNotSupportedError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolInvokeError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolApiSchemaError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolCredentialPolicyViolationError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolEngineInvokeError(Exception):
|
|
meta: ToolInvokeMeta
|
|
|
|
def __init__(self, meta, **kwargs):
|
|
self.meta = meta
|
|
super().__init__(**kwargs)
|