forked from TrueCloudLab/frostfs-node
11 lines
310 B
Go
11 lines
310 B
Go
|
package getsvc
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
errRangeZeroLength = errors.New("zero range length")
|
||
|
errRangeOverflow = errors.New("range overflow")
|
||
|
errChildWithEmptyParent = errors.New("received child with empty parent")
|
||
|
errParentAddressDiffers = errors.New("parent address in child object differs")
|
||
|
)
|