# `Ash.Error.Unknown.UnknownError`
[🔗](https://github.com/ash-project/ash/blob/v3.23.1/lib/ash/error/unknown/unknown_error.ex#L5)

Used when an unknown error occurs

# `t`

```elixir
@type t() :: %Ash.Error.Unknown.UnknownError{
  __exception__: true,
  bread_crumbs: term(),
  class: term(),
  error: binary() | nil,
  field: term() | nil,
  path: term(),
  splode: term(),
  stacktrace: term(),
  value: term() | nil,
  vars: term()
}
```

# `exception`

```elixir
@spec exception(opts :: Keyword.t()) :: %Ash.Error.Unknown.UnknownError{
  __exception__: true,
  bread_crumbs: term(),
  class: term(),
  error: term(),
  field: term(),
  path: term(),
  splode: term(),
  stacktrace: term(),
  value: term(),
  vars: term()
}
```

Create an `Elixir.Ash.Error.Unknown.UnknownError` without raising it.

## Keys

- :error
- :field
- :value

---

*Consult [api-reference.md](api-reference.md) for complete listing*
