package dune

  1. Overview
  2. Docs
Fast, portable and opinionated build system

Install

Dune Dependency

Authors

Maintainers

Sources

dune-1.9.3.tbz
sha256=317bec6de4429b5dee157e9864294e1534b722a2acfc50480bd16c804ab790ca
sha512=17450333156622d4612816f9ad5a224c741d62b247d63c1d77b5359d37517c1f9bc598dd11fa024f4e02ccf7eef474cd532eef1d9c34ed13439db6c781f9fa7a

doc/dune._stdune/Stdune/Exn_with_backtrace/index.html

Module Stdune.Exn_with_backtrace

An exception together with the backtrace that raised it.

type t = {
  1. exn : exn;
  2. backtrace : Printexc.raw_backtrace;
}
val try_with : (unit -> 'a) -> ('a, t) Result.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 : Format.formatter -> t -> unit
val map : t -> f:(exn -> exn) -> t
val map_and_reraise : t -> f:(exn -> exn) -> 'a
val to_sexp : t -> Sexp.t
OCaml

Innovation. Community. Security.