diff --git a/files/en-us/web/api/response/blob/index.md b/files/en-us/web/api/response/blob/index.md index 83c7b419544d838..471c9a091c8561b 100644 --- a/files/en-us/web/api/response/blob/index.md +++ b/files/en-us/web/api/response/blob/index.md @@ -34,6 +34,8 @@ A promise that resolves with a {{domxref("Blob")}}. ### Exceptions +- {{domxref("DOMException")}} `AbortError` + - : The request was [aborted](/en-US/docs/Web/API/Fetch_API/Using_Fetch#canceling_a_request). - {{jsxref("TypeError")}} - : Thrown for one of the following reasons: - The response body is [disturbed or locked](/en-US/docs/Web/API/Fetch_API/Using_Fetch#locked_and_disturbed_streams). diff --git a/files/en-us/web/api/response/bytes/index.md b/files/en-us/web/api/response/bytes/index.md index 740dd30aaf2d6df..28dc2b49408e29b 100644 --- a/files/en-us/web/api/response/bytes/index.md +++ b/files/en-us/web/api/response/bytes/index.md @@ -27,6 +27,8 @@ A promise that resolves with an {{jsxref("Uint8Array")}}. ### Exceptions +- {{domxref("DOMException")}} `AbortError` + - : The request was [aborted](/en-US/docs/Web/API/Fetch_API/Using_Fetch#canceling_a_request). - {{jsxref("TypeError")}} - : Thrown for one of the following reasons: - The response body is [disturbed or locked](/en-US/docs/Web/API/Fetch_API/Using_Fetch#locked_and_disturbed_streams). diff --git a/files/en-us/web/api/response/formdata/index.md b/files/en-us/web/api/response/formdata/index.md index a2d67cc10b85ef3..cb0858acddcb8e7 100644 --- a/files/en-us/web/api/response/formdata/index.md +++ b/files/en-us/web/api/response/formdata/index.md @@ -33,6 +33,8 @@ A {{jsxref("Promise")}} that resolves with a {{domxref("FormData")}} object. ### Exceptions +- {{domxref("DOMException")}} `AbortError` + - : The request was [aborted](/en-US/docs/Web/API/Fetch_API/Using_Fetch#canceling_a_request). - {{jsxref("TypeError")}} - : Thrown for one of the following reasons: - The response body is [disturbed or locked](/en-US/docs/Web/API/Fetch_API/Using_Fetch#locked_and_disturbed_streams). diff --git a/files/en-us/web/api/response/json/index.md b/files/en-us/web/api/response/json/index.md index 1b351bdf74585a6..40736216621efb2 100644 --- a/files/en-us/web/api/response/json/index.md +++ b/files/en-us/web/api/response/json/index.md @@ -31,6 +31,8 @@ anything that can be represented by JSON — an object, an array, a string, a nu ### Exceptions +- {{domxref("DOMException")}} `AbortError` + - : The request was [aborted](/en-US/docs/Web/API/Fetch_API/Using_Fetch#canceling_a_request). - {{jsxref("TypeError")}} - : Thrown for one of the following reasons: - The response body is [disturbed or locked](/en-US/docs/Web/API/Fetch_API/Using_Fetch#locked_and_disturbed_streams). diff --git a/files/en-us/web/api/response/text/index.md b/files/en-us/web/api/response/text/index.md index 63040f036c68d19..1b1888be6cb236a 100644 --- a/files/en-us/web/api/response/text/index.md +++ b/files/en-us/web/api/response/text/index.md @@ -28,6 +28,8 @@ A Promise that resolves with a {{jsxref("String")}}. ### Exceptions +- {{domxref("DOMException")}} `AbortError` + - : The request was [aborted](/en-US/docs/Web/API/Fetch_API/Using_Fetch#canceling_a_request). - {{jsxref("TypeError")}} - : Thrown for one of the following reasons: - The response body is [disturbed or locked](/en-US/docs/Web/API/Fetch_API/Using_Fetch#locked_and_disturbed_streams).