The PromiseRejectionEvent interface represents events which are sent to the global script context when JavaScript Promises are rejected. These events are particularly useful for telemetry and debugging purposes.
For details on promise rejection events, see Promise rejection events in Using Promises.
<div id="interfaceDiagram" style="display: inline-block; position: relative; width: 100%; padding-bottom: 20%; vertical-align: middle; overflow: hidden;"><svg style="display: inline-block; position: absolute; top: 0; left: 0;" viewbox="-50 0 600 120" preserveAspectRatio="xMinYMin meet"><a xlink:href="https://developer.mozilla.org/en-US/docs/Web/API/Event" target="_top"><rect x="1" y="1" width="75" height="50" fill="#fff" stroke="#D4DDE4" stroke-width="2px" /><text x="38.5" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">Event</text></a><polyline points="76,25 86,20 86,30 76,25" stroke="#D4DDE4" fill="none"/><line x1="86" y1="25" x2="116" y2="25" stroke="#D4DDE4"/><a xlink:href="https://developer.mozilla.org/en-US/docs/Web/API/PromiseRejectionEvent" target="_top"><rect x="116" y="1" width="210" height="50" fill="#F4F7F8" stroke="#D4DDE4" stroke-width="2px" /><text x="221" y="30" font-size="12px" font-family="Consolas,Monaco,Andale Mono,monospace" fill="#4D4E53" text-anchor="middle" alignment-baseline="middle">PromiseRejectionEvent</text></a></svg></div>
a:hover text { fill: #0095DD; pointer-events: all;}
Constructor
PromiseRejectionEvent()- Creates a
PromiseRejectionEventevent, given the type of event (unhandledrejectionorrejectionhandled) and other details.
Properties
Also inherits properties from its parent Event.
PromiseRejectionEvent.promiseRead only- The JavaScript
Promisethat was rejected. PromiseRejectionEvent.reasonRead only- A value or
Objectindicating why the promise was rejected, as passed toPromise.reject().
Methods
This interface has no unique methods; inherits methods from its parent Event.
Events
rejectionhandled- Fired when a JavaScript
Promiseis rejected, and after the rejection is handled by the promise's rejection handling code. unhandledrejection- Fired when a JavaScript
Promiseis rejected but there is no rejection handler to deal with the rejection.
Examples
This simple example catches unhandled promise rejections and logs them for debugging purposes.
window.onunhandledrejection = function(e) {
console.log(e.reason);
}
Specifications
| Specification | Status | Comment |
|---|---|---|
| HTML Living StandardThe definition of 'PromiseRejectionEvent' in that specification. | Living Standard | Initial definition. |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
PromiseRejectionEvent
|
Chrome
Full support 49 |
Edge
Full support ≤79 |
Firefox Full support 69 Full support 69 Full support 68 Disabled' From version 68: this feature is behind the |
IE
No support No |
Opera
Full support 36 |
Safari
Full support 11 |
WebView Android
Full support 49 |
Chrome Android
Full support 49 |
Firefox Android Full support 68 Full support 68 Disabled' From version 68: this feature is behind the |
Opera Android
Full support 36 |
Safari iOS
Full support 11.3 |
Samsung Internet Android
Full support 5.0 |
PromiseRejectionEvent() constructor
|
Chrome
Full support 49 |
Edge
Full support ≤79 |
Firefox Full support 69 Full support 69 Full support 68 Disabled' From version 68: this feature is behind the |
IE
No support No |
Opera
Full support 36 |
Safari
Full support 11 |
WebView Android
Full support 49 |
Chrome Android
Full support 49 |
Firefox Android Full support 68 Full support 68 Disabled' From version 68: this feature is behind the |
Opera Android
Full support 36 |
Safari iOS
Full support 11.3 |
Samsung Internet Android
Full support 5.0 |
promise
|
Chrome
Full support 49 |
Edge
Full support ≤79 |
Firefox Full support 69 Full support 69 Full support 68 Disabled' From version 68: this feature is behind the |
IE
No support No |
Opera
Full support 36 |
Safari
Full support 11 |
WebView Android
Full support 49 |
Chrome Android
Full support 49 |
Firefox Android Full support 68 Full support 68 Disabled' From version 68: this feature is behind the |
Opera Android
Full support 36 |
Safari iOS
Full support 11.3 |
Samsung Internet Android
Full support 5.0 |
reason
|
Chrome
Full support 49 |
Edge
Full support ≤79 |
Firefox Full support 69 Full support 69 Full support 68 Disabled' From version 68: this feature is behind the |
IE
No support No |
Opera
Full support 36 |
Safari
Full support 11 |
WebView Android
Full support 49 |
Chrome Android
Full support 49 |
Firefox Android Full support 68 Full support 68 Disabled' From version 68: this feature is behind the |
Opera Android
Full support 36 |
Safari iOS
Full support 11.3 |
Samsung Internet Android
Full support 5.0 |
Legend
- Full support
- Full support
- No support
- No support
- User must explicitly enable this feature.'
- User must explicitly enable this feature.
See also
- Promises
- Using promises
PromiseWindowEventHandlers.onrejectionhandledWindowEventHandlers.onunhandledrejection
PromiseRejectionEvent by Mozilla Contributors is licensed under CC-BY-SA 2.5.