You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TypedValues returns map of key and value that is set by TypedValue. All wrapped goerr.Error typed key and values will be merged. Key and values of wrapped error is overwritten by upper goerr.Error.
118
-
funcTypedValues(errerror) map[string]any {
119
-
ife:=Unwrap(err); e!=nil {
120
-
returne.TypedValues()
121
-
}
122
-
123
-
returnnil
124
-
}
125
-
126
85
// Tags returns list of tags that is set by WithTags. All wrapped goerr.Error tags will be merged. Tags of wrapped error is overwritten by upper goerr.Error.
// TypedValues returns map of key and value that is set by TypedValue. All wrapped goerr.Error typed key and values will be merged. Key and values of wrapped error is overwritten by upper goerr.Error.
36
+
funcTypedValues(errerror) map[string]any {
37
+
ife:=Unwrap(err); e!=nil {
38
+
returne.TypedValues()
39
+
}
40
+
41
+
returnnil
42
+
}
43
+
44
+
// GetTypedValue returns value associated with the typed key from the error. It searches through the error chain.
0 commit comments