# `Tempo.ConversionError`
[🔗](https://github.com/kipcole9/tempo/blob/v0.5.0/lib/tempo/exception/conversion_error.ex#L1)

Exception raised when a `Tempo` value cannot be converted to
the requested target — typically a standard-library
`t:Date.t/0`, `t:Time.t/0`, `t:NaiveDateTime.t/0`, or
`t:DateTime.t/0`, or in the reverse direction an ISO 8601 or
IXDTF encoding that the target type does not support.

# `t`

```elixir
@type t() :: %Tempo.ConversionError{
  __exception__: true,
  reason: atom() | String.t() | nil,
  target: atom() | module() | String.t() | nil,
  value: any() | nil
}
```

---

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