# `Bolty.Error`

# `t`

```elixir
@type t() :: %Bolty.Error{
  __exception__: true,
  bolt: %{code: binary(), message: binary() | nil} | nil,
  code: atom(),
  module: module(),
  packstream: %{bits: any() | nil} | nil
}
```

# `message`

```elixir
@spec message(t()) :: String.t()
```

Return the code for the given error.

### Examples

     iex> {:error, %Bolty.Error{} = error} = do_something()
     iex> Exception.message(error)
     "Unable to perform this action."

# `to_atom`

```elixir
@spec to_atom(String.t()) :: atom()
```

Gets the corresponding atom based on the error code.

# `wrap`

```elixir
@spec wrap(module(), atom()) :: t()
@spec wrap(module(), String.t()) :: t()
@spec wrap(module(), map()) :: t()
```

# `wrap`

```elixir
@spec wrap(any(), any(), any()) :: t()
```

---

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