github.com/newrelic/go-agent@v3.26.0+incompatible/internal/sysinfo/errors.go (about)

     1  // Copyright 2020 New Relic Corporation. All rights reserved.
     2  // SPDX-License-Identifier: Apache-2.0
     3  
     4  package sysinfo
     5  
     6  import (
     7  	"errors"
     8  )
     9  
    10  var (
    11  	// ErrFeatureUnsupported indicates unsupported platform.
    12  	ErrFeatureUnsupported = errors.New("That feature is not supported on this platform")
    13  )