summaryrefslogtreecommitdiff
path: root/libpod/image/errors.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2018-11-26 10:03:37 -0800
committerGitHub <noreply@github.com>2018-11-26 10:03:37 -0800
commitf4db780beaa7c7ae6cc9749905246151955bffaf (patch)
tree581d8a9bf1875426c4e3ebafe8f0bddd36559031 /libpod/image/errors.go
parente3ece3bb907145110408c54f70b839777b09da44 (diff)
parent9d883d2032b112d5c65040629313cfba0de6c479 (diff)
downloadpodman-f4db780beaa7c7ae6cc9749905246151955bffaf.tar.gz
podman-f4db780beaa7c7ae6cc9749905246151955bffaf.tar.bz2
podman-f4db780beaa7c7ae6cc9749905246151955bffaf.zip
Merge pull request #1865 from baude/exists
add podman container|image exists
Diffstat (limited to 'libpod/image/errors.go')
-rw-r--r--libpod/image/errors.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/libpod/image/errors.go b/libpod/image/errors.go
new file mode 100644
index 000000000..4088946cb
--- /dev/null
+++ b/libpod/image/errors.go
@@ -0,0 +1,15 @@
+package image
+
+import (
+ "errors"
+)
+
+// Copied directly from libpod errors to avoid circular imports
+var (
+ // ErrNoSuchCtr indicates the requested container does not exist
+ ErrNoSuchCtr = errors.New("no such container")
+ // ErrNoSuchPod indicates the requested pod does not exist
+ ErrNoSuchPod = errors.New("no such pod")
+ // ErrNoSuchImage indicates the requested image does not exist
+ ErrNoSuchImage = errors.New("no such image")
+)