summaryrefslogtreecommitdiff
path: root/vendor/github.com/opencontainers/runc/libcontainer/error.go
blob: 510c072264f6949a6ae2f6f687ed71b317b560f2 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package libcontainer

import "errors"

var (
	ErrExist      = errors.New("container with given ID already exists")
	ErrInvalidID  = errors.New("invalid container ID format")
	ErrNotExist   = errors.New("container does not exist")
	ErrPaused     = errors.New("container paused")
	ErrRunning    = errors.New("container still running")
	ErrNotRunning = errors.New("container not running")
	ErrNotPaused  = errors.New("container not paused")
)