github.com/TykTechnologies/newrelic-go-agent@v0.0.0-20230823062834-3c80ff5627f6/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 )