Skip to content
Advertisement

Error in promise catch does not trigger global error handler

Why does an error thrown in a promise reject/catch method not trigger the global error handler? How can a global error handler that includes these be created? In my app the global error handler logs the error.

JavaScript

Advertisement

Answer

This is not an error, but Unhandled Rejection:

The unhandledrejection event is sent to the global scope of a script when a JavaScript Promise that has no rejection handler is rejected

Working version of the code:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement