github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/libpod/image/errors.go (about) 1 package image 2 3 import ( 4 "github.com/containers/podman/v2/libpod/define" 5 ) 6 7 var ( 8 // ErrNoSuchCtr indicates the requested container does not exist 9 ErrNoSuchCtr = define.ErrNoSuchCtr 10 // ErrNoSuchPod indicates the requested pod does not exist 11 ErrNoSuchPod = define.ErrNoSuchPod 12 // ErrNoSuchImage indicates the requested image does not exist 13 ErrNoSuchImage = define.ErrNoSuchImage 14 // ErrNoSuchTag indicates the requested image tag does not exist 15 ErrNoSuchTag = define.ErrNoSuchTag 16 )