MCPcopy
hub / github.com/CopilotKit/CopilotKit / ActionExecutionException

Class ActionExecutionException

sdk-python/copilotkit/exc.py:29–35  ·  view source on GitHub ↗

Exception raised when an action fails to execute.

Source from the content-addressed store, hash-verified

27
28
29class ActionExecutionException(CopilotKitError):
30 """Exception raised when an action fails to execute."""
31
32 def __init__(self, name: str, error: Exception):
33 self.name = name
34 self.error = error
35 super().__init__(f"Action '{name}' failed to execute: {error}")
36
37
38class AgentExecutionException(CopilotKitError):

Callers 1

execute_actionMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…