| 1234567891011121314151617 | class ToolNodeError(ValueError):    """Base exception for tool node errors."""    passclass ToolParameterError(ToolNodeError):    """Exception raised for errors in tool parameters."""    passclass ToolFileError(ToolNodeError):    """Exception raised for errors related to tool files."""    pass
 |