github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/libpod/image/errors.go (about) 1 package image 2 3 import ( 4 "errors" 5 ) 6 7 // Copied directly from libpod errors to avoid circular imports 8 var ( 9 // ErrNoSuchCtr indicates the requested container does not exist 10 ErrNoSuchCtr = errors.New("no such container") 11 // ErrNoSuchPod indicates the requested pod does not exist 12 ErrNoSuchPod = errors.New("no such pod") 13 // ErrNoSuchImage indicates the requested image does not exist 14 ErrNoSuchImage = errors.New("no such image") 15 )