Module Debug_protocol.Exception_break_mode

type t =
| Never
| Always
| Unhandled
| 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
type t
val of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or
val to_yojson : t -> Yojson.Safe.t