(message, code)
| 442 | |
| 443 | class Socks5ProxyError extends UndiciError { |
| 444 | constructor (message, code) { |
| 445 | super(message) |
| 446 | this.name = 'Socks5ProxyError' |
| 447 | this.message = message || 'SOCKS5 proxy error' |
| 448 | this.code = code || 'UND_ERR_SOCKS5' |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | const kMessageSizeExceededError = Symbol.for('undici.error.UND_ERR_WS_MESSAGE_SIZE_EXCEEDED') |
nothing calls this directly
no outgoing calls
no test coverage detected