blob: 0e36b400a47299bc77a62e0e62f3a86dec7c66b3 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
|
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")
|