ExArrow.Error exception (ex_arrow v0.6.0)

View Source

Structured error type for ExArrow operations.

All native (NIF) and API errors are mapped to this exception with a code, message, and optional details for debugging or logging.

Summary

Types

t()

@type t() :: %ExArrow.Error{
  __exception__: term(),
  code: atom() | String.t(),
  details: term() | nil,
  message: String.t()
}