package ocaml-base-compiler

  1. Overview
  2. Docs
type exception_alias = Odoc_exception.exception_alias = {
  1. ea_name : Name.t;
  2. mutable ea_ex : t_exception option;
}
and t_exception = Odoc_exception.t_exception = {
  1. ex_name : Name.t;
  2. mutable ex_info : info option;
  3. ex_args : Odoc_type.constructor_args;
  4. ex_ret : Types.type_expr option;
  5. ex_alias : exception_alias option;
  6. mutable ex_loc : location;
  7. mutable ex_code : string option;
}
OCaml

Innovation. Community. Security.