github.com/Axway/agent-sdk@v1.1.101/pkg/traceability/errors.go (about)

     1  package traceability
     2  
     3  import "github.com/Axway/agent-sdk/pkg/util/errors"
     4  
     5  // Config errors
     6  var (
     7  	ErrHTTPNotConnected = errors.New(1503, "http transport is not connected")
     8  	ErrJSONEncodeFailed = errors.New(1504, "failed to encode the json content")
     9  	ErrInvalidConfig    = errors.Newf(1505, "invalid traceability config. Config error: %s")
    10  	ErrInvalidRegex     = errors.Newf(1506, "could not compile the %s regex value (%v): %v")
    11  )