# `Jido.Error.TimeoutError`
[🔗](https://github.com/agentjido/jido/blob/v2.3.0/lib/jido/error.ex#L212)

Error for operation timeouts.

## Fields

- `message` - Human-readable error message
- `timeout` - The timeout value in milliseconds
- `details` - Additional context

# `t`

```elixir
@type t() :: %Jido.Error.TimeoutError{
  __exception__: true,
  bread_crumbs: term(),
  class: term(),
  details: map(),
  message: String.t(),
  path: term(),
  splode: term(),
  stacktrace: term(),
  timeout: non_neg_integer() | nil,
  vars: term()
}
```

# `exception`

```elixir
@spec exception(opts :: Keyword.t()) :: %Jido.Error.TimeoutError{
  __exception__: true,
  bread_crumbs: term(),
  class: term(),
  details: term(),
  message: term(),
  path: term(),
  splode: term(),
  stacktrace: term(),
  timeout: term(),
  vars: term()
}
```

Create an `Elixir.Jido.Error.TimeoutError` without raising it.

## Keys

- :message
- :timeout
- :details

