ref: df1f2fb3daa1acd25c88510f259d5535fb482126
dir: /object/store/errors.go/
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")