summaryrefslogtreecommitdiff
path: root/libpod/image/errors.go
blob: 3f58b1c6a26357a21ce190d0c38b07cb5b9c7ed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package image

import (
	"github.com/containers/podman/v2/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
)