2018-02-05 16:05:59 -05:00
|
|
|
package system // import "github.com/docker/docker/pkg/system"
|
2014-02-25 15:19:13 -08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-07-29 00:13:12 +08:00
|
|
|
// ErrNotSupportedPlatform means the platform is not supported.
|
2014-02-25 15:19:13 -08:00
|
|
|
ErrNotSupportedPlatform = errors.New("platform and architecture is not supported")
|
2017-11-20 08:33:20 -08:00
|
|
|
|
|
|
|
// ErrNotSupportedOperatingSystem means the operating system is not supported.
|
|
|
|
ErrNotSupportedOperatingSystem = errors.New("operating system is not supported")
|
2014-02-25 15:19:13 -08:00
|
|
|
)
|