package pgx

  1. Overview
  2. Docs
type t = {
  1. code : string;
  2. severity : string;
  3. message : string;
  4. custom : (char * string) list;
}
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val should_print : t -> verbose:int -> bool
val to_string : ?verbose:bool -> t -> string