> ## Documentation Index
> Fetch the complete documentation index at: https://krono.fabianpiper.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Error

> Property containing the last error object.

## Import

```ts theme={null}
import { Orderbook } from '@krono/core'
```

## Usage

Holds the last error if the status is `error`.

```ts theme={null}
if (orderbook.error) {
  console.error(orderbook.error.message);
}
```

## Type

```ts theme={null}
Error | null
```
