MCPcopy Create free account
hub / github.com/FastLED/FastLED / RpcCrashError

Class RpcCrashError

ci/rpc_client.py:89–98  ·  view source on GitHub ↗

Device crashed during RPC operation. Attributes: decoded_lines: Decoded stack trace lines (if decoding succeeded).

Source from the content-addressed store, hash-verified

87
88
89class RpcCrashError(RpcError):
90 """Device crashed during RPC operation.
91
92 Attributes:
93 decoded_lines: Decoded stack trace lines (if decoding succeeded).
94 """
95
96 def __init__(self, message: str, decoded_lines: list[str] | None = None) -> None:
97 super().__init__(message)
98 self.decoded_lines = decoded_lines or []
99
100
101class RpcClient:

Callers 2

send_and_matchMethod · 0.85
_wait_for_responseMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected