errors.go 358 B

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