# Functions
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Variables
ArgumentRequired is returned when an argument is required
inherited error from BadRequest, so errors.Is(err, BadRequest) == true.
BadRequest is returned when a request is invalid.
Closed is returned when a resource is closed.
ConflictSetting is returned when an indexer setting is conflicted.
Duplicate is returned when a resource already exists.
InternalError is returned when internal logic got error.
InvalidArgument is returned when an argument is invalid
inherited error from BadRequest, so errors.Is(err, BadRequest) == true.
InvalidState is returned when a state is invalid.
NotFound is returned when a resource is not found.
NotSupported is returned when a feature or result is not supported alias of Unsupported.
Overflow is returned when an overflow error occurs
inherited error from InternalError, so errors.Is(err, InternalError) == true.
OverflowUint128 is returned when an uint128 overflow error occurs
inherited error from Overflow, so errors.Is(err, Overflow) == true.
OverflowUint64 is returned when an uint64 overflow error occurs
inherited error from Overflow, so errors.Is(err, Overflow) == true.
OverflowUint64 is returned when an uint64 overflow error occurs
inherited error from Overflow, so errors.Is(err, Overflow) == true.
Retryable is returned when got an error but it can be retried.
Skippable is returned when got an error but it can be skipped or ignored and continue.
SomethingWentWrong is returned when got some bug or unexpected case
inherited error from InternalError, so errors.Is(err, InternalError) == true.
Timeout is returned when a connection to a resource timed out.
Unauthorized is returned when a request is unauthorized.
Unimplemented is returned when a feature or method is not implemented
inherited error from Unsupported, so errors.Is(err, Unsupported) == true.
Unsupported is returned when a feature or result is not supported.
# Structs
PublicError is an error that, when caught by error handler, should return a user-friendly error response to the user.