Raised when an external tool is not found.
| 7 | |
| 8 | |
| 9 | class ToolNotFoundError(SecuritySuiteException): |
| 10 | """Raised when an external tool is not found.""" |
| 11 | |
| 12 | def __init__(self, tool_name: str): |
| 13 | self.tool_name = tool_name |
| 14 | super().__init__(f"Tool '{tool_name}' not found. Please install it first.") |
| 15 | |
| 16 | |
| 17 | class ToolExecutionError(SecuritySuiteException): |
no outgoing calls