containerd/execution/error.go
Kenfe-Mickael Laventure 5b40adf9af execution: add shim runtime
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
2017-01-12 10:45:33 -08:00

10 lines
279 B
Go

package execution
import "fmt"
var (
ErrProcessNotFound = fmt.Errorf("process not found")
ErrProcessNotExited = fmt.Errorf("process has not exited")
ErrContainerNotFound = fmt.Errorf("container not found")
ErrContainerExists = fmt.Errorf("container already exists")
)