shithub: furgit

ref: 3ce59c3248dec0eb0f918c42f37f53bc2ac20425
dir: /object/store/errors.go/

View raw version
package objectstore

import "errors"

// ErrObjectNotFound indicates that an object does not exist in a backend.
// This error must only be produced by object stores, when it has no
// specified object ID, but no other unexpected conditions were encountered.
var ErrObjectNotFound = errors.New("objectstore: object not found")