package octez-proto-libs
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=55ea1fb8bb3273a7fc270ca8f650d45c56449665619482aad9bc12f3ea736b7e
sha512=fec850fc2d17d7490bbabd5147d62aad13b3aaed8774270f8a38ab419670ed03e0fd30cf8642a97984eca5c2446726fe590ad99c015f7ec50919dc7652f25053
doc/octez-proto-libs.protocol-environment/Tezos_protocol_environment/V0/Make/Error_monad/index.html
Module Make.Error_monadSource
Tezos Protocol Implementation - Error Monad
Error classification
type error_category = [ | `Branch(*Errors that may not happen in another context
*)| `Temporary(*Errors that may not happen in a later context
*)| `Permanent(*Errors that will happen no matter the context
*)
]Categories of error
Custom error handling for economic protocols.
val pp : Format.formatter -> error -> unitA JSON error serializer
val json_of_error : error -> Data_encoding.jsonval error_of_json : Data_encoding.json -> errortype error_info = {category : error_category;id : string;title : string;description : string;schema : Data_encoding.json_schema;
}Error information
val pp_info : Format.formatter -> error_info -> unitval get_registered_errors : unit -> error_info listRetrieves information of registered errors
val register_error_kind :
error_category ->
id:string ->
title:string ->
description:string ->
?pp:(Format.formatter -> 'err -> unit) ->
'err Data_encoding.t ->
(error -> 'err option) ->
('err -> error) ->
unitFor other modules to register specialized error serializers
Classify an error using the registered kinds
Monad definition
type 'a tzresult = ('a, error list) Pervasives.resultval result_encoding : 'a Data_encoding.t -> 'a tzresult Data_encoding.encodingA JSON serializer for result of a given type
val ok : 'a -> 'a tzresultSuccessful result
Enrich an error report (or do nothing on a successful result) manually
Automatically enrich error reporting on stack rewind
Same as record_trace, for unevaluated error
Same as trace, for unevaluated Lwt error
In-monad list iterators
A List.map2 in the monad
A List.map2 in the monad
A List.filter_map in the monad
A List.fold_left in the monad
A List.fold_right in the monad