> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# errors$

> Observable stream of errors from media, signaling, and peer connection layers.

```ts
get errors$(): Observable<CallError>
```

Observable stream of errors from media, signaling, and peer connection layers.

## **Examples**

```ts
call.errors$.subscribe((errors) => {
  console.log('errors:', errors);
});
```