Files
containerd/vendor/github.com/docker/docker/pkg/system/errors.go
2017-01-12 08:24:48 +00:00

11 lines
195 B
Go

package system
import (
"errors"
)
var (
// ErrNotSupportedPlatform means the platform is not supported.
ErrNotSupportedPlatform = errors.New("platform and architecture is not supported")
)