SqliteEngine.ProcedureError exception (SqliteEngine v0.1.1)

Copy Markdown View Source

Structured error returned by native Luau procedure operations.

Summary

Types

t()

@type t() :: %SqliteEngine.ProcedureError{
  __exception__: term(),
  batch_index: non_neg_integer() | nil,
  command_id: binary() | nil,
  message: binary() | nil,
  phase: atom(),
  procedure_key: binary() | nil,
  reason: term(),
  retryable?: boolean(),
  rollback_error: term() | nil,
  sqlite_code: integer() | nil,
  sqlite_extended_code: integer() | nil
}