# Functions
ABCIError will resolve an error code/log from an abci result into an error message.
ABCIInfo returns the ABCI error information as consumed by the tendermint client.
AssertNil panics on error Should be only used with interface methods, which require return error, but the error is always nil.
IsOf checks if a received error is caused by one of the target errors.
New is an alias for Register.
Recover captures a panic and stop its propagation.
Register returns an error instance that should be used as the base for creating error instances during runtime.
RegisterWithGRPCCode is a version of Register that associates a gRPC error code with a registered error.
WithType is a helper to augment an error with a corresponding type message.
Wrap extends given error with an additional information.
Wrapf extends given error with an additional information.
# Constants
SuccessABCICode declares an ABCI response use 0 to signal that the processing was successful and no error is returned.
UndefinedCodespace when we explicitly declare no codespace.
# Variables
ErrPanic is only set when we recover from a panic, so we know to redact potentially sensitive system info.