containerd/errors.go

17 lines
615 B
Go
Raw Normal View History

2015-11-05 23:29:53 +00:00
package containerd
import "errors"
var (
// External errors
ErrEventChanNil = errors.New("containerd: event channel is nil")
ErrBundleNotFound = errors.New("containerd: bundle not found")
ErrContainerNotFound = errors.New("containerd: container not found")
ErrContainerExists = errors.New("containerd: container already exists")
// Internal errors
2015-11-06 21:01:55 +00:00
errShutdown = errors.New("containerd: supervisor is shutdown")
errRootNotAbs = errors.New("containerd: rootfs path is not an absolute path")
errNoContainerForPid = errors.New("containerd: pid not registered for any container")
2015-11-05 23:29:53 +00:00
)