aboutsummaryrefslogtreecommitdiff
path: root/ref/store/errors.go
blob: 5c462d7d473cbcb6e67c84728c1fda2ca09da092 (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 objectstorer.
var ErrReferenceNotFound = errors.New("refstore: reference not found")