github.com/docker/docker@v299999999.0.0-20200612211812-aaf470eca7b5+incompatible/pkg/system/errors.go (about)

     1  package system // import "github.com/docker/docker/pkg/system"
     2  
     3  import (
     4  	"errors"
     5  )
     6  
     7  var (
     8  	// ErrNotSupportedPlatform means the platform is not supported.
     9  	ErrNotSupportedPlatform = errors.New("platform and architecture is not supported")
    10  
    11  	// ErrNotSupportedOperatingSystem means the operating system is not supported.
    12  	ErrNotSupportedOperatingSystem = errors.New("operating system is not supported")
    13  )