diff options
| author | 2026-04-02 08:16:04 +0000 | |
|---|---|---|
| committer | 2026-04-02 08:16:04 +0000 | |
| commit | 510a6a3d09d6fc010fecc0d87e6d838fecc3a6df (patch) | |
| tree | de753fab31de495f682e46f4f10d71518a63c6cf /object/store/errors.go | |
| parent | furgit: Fix doc whitespace (diff) | |
| signature | No signature | |
object/store: Add interfaces
Diffstat (limited to 'object/store/errors.go')
| -rw-r--r-- | object/store/errors.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/object/store/errors.go b/object/store/errors.go new file mode 100644 index 00000000..12bb8b28 --- /dev/null +++ b/object/store/errors.go @@ -0,0 +1,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") |
