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

# errors$

> Observable stream of errors from transport, authentication, and devices.

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

Observable stream of errors from transport, authentication, and devices.

## **Examples**

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