package capnp-rpc

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

Cap'n Proto exceptions.

type ty = [
  1. | `Failed
  2. | `Overloaded
  3. | `Disconnected
  4. | `Unimplemented
  5. | `Undefined of int
]
type t = {
  1. ty : ty;
  2. reason : string;
}
val pp_ty : Format.formatter -> [< `Disconnected | `Failed | `Overloaded | `Undefined of int | `Unimplemented ] -> unit
val pp : Format.formatter -> t -> unit
val v : ?ty:ty -> string -> t
val cancelled : t