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

Error for runtime execution failures.

Covers action execution and planning failures.

## Fields

- `message` - Human-readable error message
- `phase` - Where failure occurred: `:execution`, `:planning`
- `details` - Additional context

# `t`

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

# `exception`

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

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

## Keys

- :message
- :phase
- :details

