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