dom / latest / sensor / error_event.html /

Sensor: error event

The error event is fired when an exception occurs on a sensor.

The Sensor interface is a base class, onerror and the error event may only be used on one of the derived classes.

After this event has occurred, the Sensor object becomes idle. If the sensor was reading values, it will stop until it restarts.

Syntax

Use the event name in methods like addEventListener(), or set an event handler property.

addEventListener('error', event => { })

onerror = event => { }

Event type

Event properties

In addition to the properties listed below, properties from the parent interface, Event, are available.

error Read only

Returns the DOMException that has been thrown.

Examples

Log accelerometer exceptions

This example adds an event listener to log errors occurred on an Accelerometer.

const acl = new Accelerometer({frequency: 60});
acl.addEventListener('error', error => console.log(`Error: ${error.name}`));
acl.start();

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
error_event
67
79
No
No
54
No
67
67
No
48
No
9.0

See also

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