forked from TrueCloudLab/frostfs-node
Dmitrii Stepanov
45438e7b06
Rename execCtx to request. Move code to appropriate files. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
10 lines
310 B
Go
10 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")
|
|
)
|