summaryrefslogtreecommitdiff
path: root/libpod/image/errors.go
blob: ddbf7be4b882214a27c11a503c901347f7c5e621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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")
	// ErrNoSuchTag indicates the requested image tag does not exist
	ErrNoSuchTag = errors.New("no such tag")
)