dify/dify-workflow-engine/core/tools/errors.py

15 lines
262 B
Python

class ToolProviderCredentialValidationError(Exception):
pass
class ToolNotFoundError(Exception):
pass
class ToolParameterValidationError(Exception):
pass
class ToolInvokeError(Exception):
pass
class ToolEngineInvokeError(Exception):
pass