containerd/execution/error.go
Kenfe-Mickael Laventure abaa421141 execution/oci: use Status type instead of string
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
2016-12-16 08:49:09 -08:00

7 lines
95 B
Go

package execution
import "fmt"
var (
ErrProcessNotFound = fmt.Errorf("process not found")
)