# `LeXtract.Error.Processing`
[🔗](https://github.com/YgorCastor/lextract.git/blob/main/lib/lextract/error/processing.ex#L1)

Error class for processing pipeline failures.

Covers errors during text processing, chunking, tokenization,
alignment, resolution, and other pipeline operations.

## Examples

    iex> error = LeXtract.Error.Processing.Parsing.exception(
    ...>   format: :json,
    ...>   reason: "unexpected token"
    ...> )
    iex> match?(%LeXtract.Error.Processing.Parsing{}, error)
    true

# `exception`

```elixir
@spec exception(opts :: Keyword.t()) :: %LeXtract.Error.Processing{
  __exception__: term(),
  bread_crumbs: term(),
  class: term(),
  errors: term(),
  path: term(),
  splode: term(),
  stacktrace: term(),
  vars: term()
}
```

Create an `Elixir.LeXtract.Error.Processing` without raising it.

## Keys

- :errors

# `message`

---

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