mirror of
https://github.com/PeernetOfficial/Abstraction.git
synced 2026-07-19 11:57:50 +01:00
15 lines
398 B
Go
15 lines
398 B
Go
package pogreb
|
|
|
|
import (
|
|
"github.com/akrylysov/pogreb/internal/errors"
|
|
)
|
|
|
|
var (
|
|
errKeyTooLarge = errors.New("key is too large")
|
|
errValueTooLarge = errors.New("value is too large")
|
|
errFull = errors.New("database is full")
|
|
errCorrupted = errors.New("database is corrupted")
|
|
errLocked = errors.New("database is locked")
|
|
errBusy = errors.New("database is busy")
|
|
)
|