package stdune

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

A programming error that should be reported upstream

type t = {
  1. message : string;
  2. data : (string * Dyn.t) list;
  3. loc : Stdune__.Loc0.t option;
}
exception E of t
val to_dyn_without_loc : t -> Dyn.t
val to_dyn : t -> Dyn.t
val create : ?loc:Stdune__.Loc0.t -> string -> (string * Dyn.t) list -> t
val raise : ?loc:Stdune__.Loc0.t -> string -> (string * Dyn.t) list -> _