| 10 | * expose the HTTP status of a failed WebSocket handshake, so pre-open socket |
| 11 | * errors are treated as generic reconnectable failures. |
| 12 | */ |
| 13 | export class WebSocketAuthError extends Error { |
| 14 | constructor(message = 'WebSocket authentication failed') { |
| 15 | super(message); |
nothing calls this directly
no outgoing calls
no test coverage detected