9f7a22e2aa
Replace `ErrRangeOutOfBounds` error from `pkg/core/object` package with `ObjectOutOfRange` from `apistatus` package. That error is returned by storage node's server as NeoFS API statuses. Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
25 lines
734 B
Go
25 lines
734 B
Go
package shard
|
|
|
|
import (
|
|
"errors"
|
|
|
|
apistatus "github.com/nspcc-dev/neofs-sdk-go/client/status"
|
|
)
|
|
|
|
// IsErrNotFound checks if error returned by Shard Get/Head/GetRange method
|
|
// corresponds to missing object.
|
|
func IsErrNotFound(err error) bool {
|
|
return errors.As(err, new(apistatus.ObjectNotFound))
|
|
}
|
|
|
|
// IsErrRemoved checks if error returned by Shard Exists/Get/Head/GetRange method
|
|
// corresponds to removed object.
|
|
func IsErrRemoved(err error) bool {
|
|
return errors.As(err, new(apistatus.ObjectAlreadyRemoved))
|
|
}
|
|
|
|
// IsErrOutOfRange checks if an error returned by Shard GetRange method
|
|
// corresponds to exceeding the object bounds.
|
|
func IsErrOutOfRange(err error) bool {
|
|
return errors.As(err, new(apistatus.ObjectOutOfRange))
|
|
}
|