You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can abort the `request` using [`AbortController`](https://developer.mozilla.org/en-US/docs/Web/API/AbortController).
Copy file name to clipboardexpand all lines: documentation/8-errors.md
+6
Original file line number
Diff line number
Diff line change
@@ -97,3 +97,9 @@ When the request is aborted with `promise.cancel()`.
97
97
**Code: `ERR_RETRYING`**
98
98
99
99
Always triggers a new retry when thrown.
100
+
101
+
### `AbortError`
102
+
103
+
**Code: `ERR_ABORTED`**
104
+
105
+
When the request is aborted with [AbortController.abort()](https://developer.mozilla.org/en-US/docs/Web/API/AbortController/abort).
@@ -1489,6 +1490,38 @@ export default class Options {
1489
1490
}
1490
1491
}
1491
1492
1493
+
/**
1494
+
You can abort the `request` using [`AbortController`](https://developer.mozilla.org/en-US/docs/Web/API/AbortController).
0 commit comments