| 175 | }; |
| 176 | |
| 177 | class EventStreamConnectionError extends Error { |
| 178 | constructor(public readonly status: Exclude<EventStreamConnectionStatus, "connected">) { |
| 179 | super(status === "timeout" |
| 180 | ? "Timed out connecting to the agent event stream. Please try again." |
nothing calls this directly
no outgoing calls
no test coverage detected