aboutsummaryrefslogtreecommitdiff
path: root/internal/errutil/errutil.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/errutil/errutil.go')
-rw-r--r--internal/errutil/errutil.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/errutil/errutil.go b/internal/errutil/errutil.go
index af658410..4e33a2c5 100644
--- a/internal/errutil/errutil.go
+++ b/internal/errutil/errutil.go
@@ -14,3 +14,6 @@ func IsNotFound(err error) bool {
e, ok := err.(NotFound)
return ok && e.NotFound()
}
+
+// Args is a map of key-value pairs to provide additional context of an error.
+type Args map[string]interface{}