Module Mavryk_layer2_store.Store_errors
type Mavryk_base.TzPervasives.error +=
| Cannot_load_store of {
name : string;
path : string;
}
| Cannot_write_to_store of string
| Cannot_write_key_value_pair_to_store of {
key : string;
value : string;
name : string;
}
| Cannot_write_singleton_value_to_store of {
value : string;
name : string;
}
| Cannot_remove_key_from_store of {
key : string;
name : string;
}
| Cannot_read_from_store of string
| Cannot_read_key_from_store of {
key : string;
name : string;
}
| Decoding_error of Mavryk_base.TzPervasives.Data_encoding.Binary.read_error
| Encoding_error of Mavryk_base.TzPervasives.Data_encoding.Binary.write_error
| Cannot_close_store of string
| Cannot_overwrite_key_in_store of {
key : string;
old_value : string;
new_value : string;
name : string;
}
| Gc_failed of string
val pp_hex : Stdlib.Format.formatter -> string -> unit