Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrNotFound generic not found error ErrNotFound = errors.New("not found") // ErrInvalidArgument generic invalid argument error ErrInvalidArgument = errors.New("invalid argument") // ErrUnknown generic unknown error ErrUnknown = errors.New("unknown") // ErrConfig configuration error ErrConfig = errors.New("configuration error") // ErrAlreadyExists already exists error ErrAlreadyExists = errors.New("already exists") // ErrEOF error ErrEOF = fmt.Errorf("EOF: %w", io.EOF) // ErrOutOfRange index out of range error ErrOutOfRange = errors.New("out of range") )
View Source
var ( // ErrBlockNotFound block not found error ErrBlockNotFound = fmt.Errorf("block %w", ErrNotFound) // ErrTxNotFound tx not found error ErrTxNotFound = fmt.Errorf("tx %w", ErrNotFound) // ErrClusterNotFound cluster not found error ErrClusterNotFound = fmt.Errorf("cluster %w", ErrNotFound) )
View Source
var ( // ErrKeyNotFound key not found error ErrKeyNotFound = fmt.Errorf("key %w", ErrNotFound) // ErrCache error setting cache key ErrCache = errors.New("error caching") )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.