Better way to throw websocket exceptions

This commit is contained in:
Fedor Indutny 2023-02-28 12:34:54 -08:00 committed by GitHub
parent d1db1195ed
commit c038c07b06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

View file

@ -33,9 +33,10 @@ export class HTTPError extends Error {
headers: HTTPErrorHeadersType;
response?: unknown;
stack?: string;
cause?: unknown;
}
) {
super(`${message}; code: ${options.code}`);
super(`${message}; code: ${options.code}`, { cause: options.cause });
const { code: providedCode, headers, response, stack } = options;