Module Protocol_9p.Error

Common error reporting functions

type error = [
| `Msg of string(*

A fatal error condition; the string should be logged

*)
]
type 'a t = ('aerror) Stdlib.result
val return : 'a -> ('aerror) Stdlib.result
val error_msg : ('aStdlib.Format.formatter, unit, ('b[> `Msg of string ]) Stdlib.result) Stdlib.format4 -> 'a
val (>>=) : ('a'b) Stdlib.result -> ('a -> ('c'b) Stdlib.result) -> ('c'b) Stdlib.result