From 8e1ba736edc681493c19f6b1b02cd3a300a8e803 Mon Sep 17 00:00:00 2001 From: dfeldick Date: Fri, 20 Oct 2023 14:43:33 -0700 Subject: [PATCH] APIGOV-26268 - cleanup errors --- pkg/errors/errors.go | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 pkg/errors/errors.go diff --git a/pkg/errors/errors.go b/pkg/errors/errors.go new file mode 100644 index 0000000..c952555 --- /dev/null +++ b/pkg/errors/errors.go @@ -0,0 +1,8 @@ +package errors + +import "github.com/Axway/agent-sdk/pkg/util/errors" + +// Error definitions +var ( + ErrConfigFile = errors.New(3520, "could not find the 'traceability_agent' section in the configuration file") +)