Firefox Tomorrow

web api interface

SpeechRecognitionErrorEvent

View on MDN ↗

The SpeechRecognitionErrorEvent interface of the Web Speech API represents error messages from the recognition service.

Constructor

Instance properties

SpeechRecognitionErrorEvent also inherits properties from its parent interface, Event.

  • error Read only
    • : Returns the type of error raised.
  • message Read only
    • : Returns a message describing the error in more detail.

Examples

const recognition = new SpeechRecognition();

recognition.onerror = (event) => {
  console.log(`Speech recognition error detected: ${event.error}`);
  console.log(`Additional information: ${event.message}`);
};

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also