containerd/execution/error.go

8 lines
95 B
Go
Raw Normal View History

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