Raised when a tool execution fails.
| 15 | |
| 16 | |
| 17 | class ToolExecutionError(SecuritySuiteException): |
| 18 | """Raised when a tool execution fails.""" |
| 19 | |
| 20 | def __init__(self, tool_name: str, error: str): |
| 21 | self.tool_name = tool_name |
| 22 | self.error = error |
| 23 | super().__init__(f"Execution of '{tool_name}' failed: {error}") |
| 24 | |
| 25 | |
| 26 | class InvalidTargetError(SecuritySuiteException): |
no outgoing calls