2016-12-14 19:10:35 -08:00
|
|
|
package execution
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
var (
|
2017-01-12 10:32:09 -08:00
|
|
|
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")
|
2016-12-14 19:10:35 -08:00
|
|
|
)
|