package lsp

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

An exception together with the backtrace that raised it.

type t = {
  1. exn : exn;
  2. backtrace : Stdlib.Printexc.raw_backtrace;
}
val try_with : (unit -> 'a) -> ('a, t) Result.t
val try_with_never_returns : (unit -> Nothing.t) -> t
val capture : exn -> t

This function should be the very first thing called in the exception handler if you want it to work correctly. Otherwise it might capture an incorrect backtrace.

val reraise : t -> 'a
val pp_uncaught : Stdlib.Format.formatter -> t -> unit
val pp : t -> _ Pp.t
val map : t -> f:(exn -> exn) -> t
val map_and_reraise : t -> f:(exn -> exn) -> 'a
val to_dyn : t -> Dyn.t