WorkerGlobalScope: reportError() method
Note: This feature is only available inWeb Workers.
ThereportError() method of theWorkerGlobalScope interface may be used to report errors to the console or event handlers of global scopes, emulating an uncaught JavaScript exception.
This feature is primarily intended for custom event-dispatching or callback-manipulating libraries.Libraries can use this feature to catch errors in callback code and re-throw them to the top level handler.This ensures that an exception in one callback will not prevent others from being handled, while at the same time ensuring that stack trace information is still readily available for debugging at the top level.
Seewindow.reportError() for more information.
In this article
Syntax
reportError(throwable)Parameters
Return value
None (undefined).
Exceptions
TypeErrorThe method is called without an error argument.
Specifications
| Specification |
|---|
| HTML> # runtime-script-errors> |
Browser compatibility
See also
WorkerGlobalScopeWindow.reportError()erroreventerroreventerrorevent