Module Errors.Common_error

type t = [
| `Corrupt_search_tree of string
| `Io_error of string
| `Out_of_memory of string
| `Invalid_data of string
]
val pp : Stdlib.Format.formatter -> t -> Ppx_deriving_runtime.unit
val show : t -> Ppx_deriving_runtime.string
val of_error_code : int -> [> `Corrupt_search_tree of string | `Invalid_data of string | `Io_error of string | `Out_of_memory of string ] option