ErrorEvent
Note: This feature is available in Web Workers.
The ErrorEvent
interface represents events providing information related to errors in scripts or in files.
Constructor
ErrorEvent()
-
Creates an
ErrorEvent
event with the given parameters.
Instance properties
Also inherits properties from its parent Event
.
ErrorEvent.message
Read only-
A string containing a human-readable error message describing the problem.
ErrorEvent.filename
Read only-
A string containing the name of the script file in which the error occurred.
ErrorEvent.lineno
Read only-
An integer containing the line number of the script file on which the error occurred.
ErrorEvent.colno
Read only-
An integer containing the column number of the script file on which the error occurred.
ErrorEvent.error
Read only-
A JavaScript value, such as an
Error
orDOMException
, representing the error associated with this event.
Instance methods
Inherits methods from its parent Event
.
Specifications
Specification |
---|
HTML Standard # the-errorevent-interface |
Browser compatibility
BCD tables only load in the browser
See also
- Using web workers, most likely objects to raise such an event.
Window
:error
eventNavigation
:navigateerror
event