module Bi_util: sig .. end
sig
end
Error handling etc.
exception Error of string
string
Multipurpose exception normally raised when invalid data is found by a read or write operation.
val error : string -> 'a
string -> 'a
error msg is equivalent to raise (Error msg).
error msg
raise (Error msg)