ab8586b7c5
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
10 lines
294 B
Go
10 lines
294 B
Go
package containerd
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrUnknownRuntime = errors.New("unknown runtime")
|
|
ErrContainerExists = errors.New("container with id already exists")
|
|
ErrContainerNotExist = errors.New("container does not exist")
|
|
ErrRuntimeNotExist = errors.New("runtime does not exist")
|
|
)
|