web-auth-library
Version:
Authentication library for the browser environment using Web Crypto API
14 lines (13 loc) • 402 B
JavaScript
/* SPDX-FileCopyrightText: 2022-present Kriasoft */
/* SPDX-License-Identifier: MIT */
export class FetchError extends Error {
name = "FetchError";
response;
constructor(message, options) {
super(message, { cause: options?.cause });
this.response = options.response;
if (Error.captureStackTrace) {
Error.captureStackTrace(this, Error);
}
}
}