mirror of
https://github.com/langgenius/dify.git
synced 2026-03-04 23:36:20 +08:00
17 lines
310 B
Python
17 lines
310 B
Python
class ToolNodeError(ValueError):
|
|
"""Base exception for tool node errors."""
|
|
|
|
pass
|
|
|
|
|
|
class ToolParameterError(ToolNodeError):
|
|
"""Exception raised for errors in tool parameters."""
|
|
|
|
pass
|
|
|
|
|
|
class ToolFileError(ToolNodeError):
|
|
"""Exception raised for errors related to tool files."""
|
|
|
|
pass
|