# Functions
IsAny checks if err is not nil and matches any one of errxx errors if match successful returns true else false Note: no unwrapping is done here.
New.
No description provided by the author
No description provided by the author
NewWithTag creates an error with tag.
WrapfWithNil returns nil if error is nil but if err is not nil wraps error with given msg unlike errors.Wrapf.
WrapwithNil returns nil if err is nil but wraps it with given errors continuously if it is not nil.
# Variables
ShowStackTrace in Error Message.
# Structs
ErrWithFmt is a simplified version of err holding a default format.
# Interfaces
Error is enriched version of normal error with tags, stacktrace and other methods.
# Type aliases
ErrCallback function to handle given error.
No description provided by the author