# `Kinda.NIFLoadError`
[🔗](https://github.com/beaver-lodge/kinda/blob/main/lib/kinda/error/nif_load.ex#L1)

The exception raised when the BEAM cannot load a generated native library.

The attempted path and the original `:erlang.load_nif/2` reason remain
available as structured fields.

# `t`

```elixir
@type t() :: %Kinda.NIFLoadError{
  __exception__: term(),
  message: String.t() | nil,
  path: Path.t() | charlist() | nil,
  reason: term()
}
```

---

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