package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. exception_id : string;
    (*

    ID of the exception that was thrown.

    *)
  2. description : string option;
    (*

    Descriptive text for the exception provided by the debug adapter.

    *)
  3. break_mode : Exception_break_mode.t;
    (*

    Mode that caused the exception notification to be raised.

    *)
  4. details : Exception_details.t option;
    (*

    Detailed information about the exception.

    *)
}
val make : exception_id:string -> ?description:string option -> break_mode:Exception_break_mode.t -> ?details:Exception_details.t option -> unit -> t
val to_yojson : t -> Yojson.Safe.t