Merge pull request #1209 from stevvooe/remove-errors

linux, linux/shim: remove error definitions
This commit is contained in:
Derek McGowan
2017-07-18 19:18:23 -07:00
committed by GitHub
12 changed files with 82 additions and 97 deletions

View File

@@ -1,10 +0,0 @@
package runtime
import "errors"
var (
ErrContainerExists = errors.New("runtime: container with id already exists")
ErrContainerNotExist = errors.New("runtime: container does not exist")
ErrRuntimeNotExist = errors.New("runtime: runtime does not exist")
ErrProcessExited = errors.New("runtime: process already exited")
)