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

     1  package redaction
     2  
     3  import "github.com/Axway/agent-sdk/pkg/util/errors"
     4  
     5  // Config errors
     6  var (
     7  	ErrGlobalRedactionCfg = errors.New(1510, "the global redaction config has not been initialized")
     8  	ErrInvalidRegex       = errors.Newf(1511, "could not compile the %s regex value (%v): %v")
     9  )