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

Error for unexpected internal failures.

## Fields

- `message` - Human-readable error message
- `details` - Additional context

# `t`

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

# `exception`

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

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

## Keys

- :message
- :details

