Firefox Tomorrow

web api instance method

WorkerGlobalScope: reportError() method

View on MDN ↗

Available in workers

The reportError() method of the WorkerGlobalScope 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.

See window.reportError() for more information.

Syntax

reportError(throwable)

Parameters

  • throwable
    • : Any JavaScript value, but preferably an error object such as a TypeError.

Return value

None (undefined).

Exceptions

  • TypeError
    • : The method is called without an error argument.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also