blob: 12bb8b287e202da2614ba790fbfd30052576fa7d (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
|
package store
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")
|