# `Tempo.ParseError`
[🔗](https://github.com/kipcole9/tempo/blob/v0.20.0/lib/tempo/exception/parse_error.ex#L1)

Exception raised when an ISO 8601 or IXDTF string cannot be
parsed.

Carries the raw input, a short reason atom or phrase identifying
the parse failure, and the byte offset into `input` at which the
parser stopped (when available).

# `t`

```elixir
@type t() :: %Tempo.ParseError{
  __exception__: term(),
  input: String.t() | nil,
  offset: non_neg_integer() | nil,
  reason: atom() | String.t() | nil
}
```

---

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