Current section
Files
Jump to
Current section
Files
src/glite@error.erl
-module(glite@error).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
-define(FILEPATH, "src/glite/error.gleam").
-export_type([error/0]).
-type error() :: {sqlite_error, integer(), binary()} |
{connection_error, binary()} |
{encode_error, binary()} |
{decode_error, binary()} |
busy_error |
{constraint_error, binary()} |
timeout_error.