blob: 4088946cb9f92a90ec44d1d511b522454ab8592f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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")
)
|