package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | Never
  2. | Always
  3. | Unhandled
  4. | User_unhandled

This enumeration defines all possible conditions when a thrown exception should result in a break. never: never breaks, always: always breaks, unhandled: breaks when exception unhandled, userUnhandled: breaks if the exception is not handled by user code.

include JSONABLE with type t := t
val to_yojson : t -> Yojson.Safe.t