forked from TrueCloudLab/frostfs-node
e478c0d024
Accoring to MetaBase-Plan-B storage engine specification. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
14 lines
328 B
Go
14 lines
328 B
Go
package meta
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrNotFound returned when object header should exist in primary index but
|
|
// it is not present there.
|
|
ErrNotFound = errors.New("address not found")
|
|
|
|
// ErrAlreadyRemoved returned when object has tombstone in graveyard.
|
|
ErrAlreadyRemoved = errors.New("object already removed")
|
|
)
|