blob: 45583440ca3697dcfd750fd2bfd289dc1590a177 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
|
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.
var ErrReferenceNotFound = errors.New("refstore: reference not found")
|