GenAI.Approval.Error (GenAI Approval v0.1.0)

Copy Markdown View Source

Structured error for script rejection (parse + static checks).

Every error carries a machine-readable code, a human message, and the line/column of the offending construct (PRD R5.8). Codes are stable API.

Summary

Types

code()

@type code() ::
  :script_too_large
  | :too_many_steps
  | :unterminated
  | :unexpected_text
  | :unexpected_token
  | :unknown_block
  | :section_order
  | :stmt_outside_step
  | :call_in_condition
  | :call_in_outputs
  | :undeclared_endpoint
  | :duplicate_endpoint
  | :undeclared_var
  | :duplicate_var
  | :type_mismatch
  | :auth_literal
  | :invalid_endpoint
  | :unknown_type

t()

@type t() :: %GenAI.Approval.Error{
  code: code(),
  column: pos_integer() | nil,
  line: pos_integer() | nil,
  message: String.t()
}

Functions

new(code, message, arg3)