2016-12-15 03:10:35 +00:00
|
|
|
package execution
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
var (
|
2017-01-12 18:32:09 +00: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-15 03:10:35 +00:00
|
|
|
)
|