Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. WorkerGlobalScope
  4. reportError()

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.

Syntax

js
reportError(throwable)

Parameters

throwable

Any JavaScript value, but preferably an error object such as aTypeError.

Return value

None (undefined).

Exceptions

TypeError

The method is called without an error argument.

Specifications

Specification
HTML
# runtime-script-errors

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp