aboutsummaryrefslogtreecommitdiffstats
path: root/test/security/k8s/src/check/errors.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/security/k8s/src/check/errors.go')
-rw-r--r--test/security/k8s/src/check/errors.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/security/k8s/src/check/errors.go b/test/security/k8s/src/check/errors.go
new file mode 100644
index 000000000..d657c1827
--- /dev/null
+++ b/test/security/k8s/src/check/errors.go
@@ -0,0 +1,10 @@
+package check
+
+import (
+ "errors"
+)
+
+var (
+ // ErrNotImplemented is returned when function is not implemented yet.
+ ErrNotImplemented = errors.New("function not implemented")
+)