github.com/Axway/agent-sdk@v1.1.101/pkg/util/errors/errors.go (about) 1 package errors 2 3 // Generic Agent Errors 4 var ( 5 ErrInitServicesNotReady = New(1001, "failed to initialize. Services are not ready") 6 ErrStartingAgentStatusUpdate = Newf(1004, "error starting %s update") 7 ErrStartingVersionChecker = Newf(1005, "%s. No version to compare for upgrade") 8 ErrGrpcConnection = New(1007, "grpc client is not connected to central") 9 ErrHarvesterConnection = New(1008, "harvester client is not connected to central") 10 )