For the complete documentation index, see llms.txt. This page is also available as Markdown.

exceptionCaptured

An error occurred in the capture process.

Details

An error has occurred during the capture process.

Event: exceptionCaptured

Type: CustomEvent

Syntax

videoId.addEventListener('exceptionCaptured', onExceptionCaptured);

Description

This event is emitted when an error has occurred during the capture process.


Example

<facephi-video-id
    onExceptionCaptured={() => {
        console.error('Something went wrong');
    }}
/>

Last updated