> For the complete documentation index, see [llms.txt](https://docs.facephi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.facephi.com/sdks/sdk-web/componentes/videoid-identificacion-en-video/eventos/exceptioncaptured.md).

# exceptionCaptured

## Detalles

Ha ocurrido algún error en el proceso de captura.

**Evento:** `exceptionCaptured`

**Tipo:** `CustomEvent`

### Sintaxis

```typescript
videoId.addEventListener('exceptionCaptured', onExceptionCaptured);
```

## Descripción

Este evento se emite cuando ha sucedido algún error en el proceso de captura.

***

## Ejemplo

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