W3cubDocs

/Web APIs

SensorErrorEvent: SensorErrorEvent() constructor

The SensorErrorEvent constructor creates a new SensorErrorEvent object which provides information about errors thrown by any of the interfaces based on Sensor.

Syntax

js

new SensorErrorEvent(type, options)

Parameters

type

A string with the name of the event. It is case-sensitive and browsers always set it to error.

options

An object that, in addition of the properties defined in Event(), can have the following properties:

error

A DOMException object describing the error.

Return value

A new SensorErrorEvent object.

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
SensorErrorEvent 67 79 No No 54 No 67 67 No 48 No 9.0

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/SensorErrorEvent/SensorErrorEvent