blob: 49f841bf46cc801ed578a8c09bbdbb87d72e3bd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package image
import (
"github.com/containers/podman/v3/libpod/define"
)
var (
// ErrNoSuchCtr indicates the requested container does not exist
ErrNoSuchCtr = define.ErrNoSuchCtr
// ErrNoSuchPod indicates the requested pod does not exist
ErrNoSuchPod = define.ErrNoSuchPod
// ErrNoSuchImage indicates the requested image does not exist
ErrNoSuchImage = define.ErrNoSuchImage
// ErrNoSuchTag indicates the requested image tag does not exist
ErrNoSuchTag = define.ErrNoSuchTag
)
|