blob: 3b2b15b38509cdb80353142946f86b6bcf790160 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
|
package refstore
import "errors"
// ErrReferenceNotFound indicates that a reference does not exist in a backend.
// TODO: Interface error? Just like object not found in objectstore.
// I'm not sure if I want this as a sentinel.
var ErrReferenceNotFound = errors.New("refstore: reference not found")
|