GetAllSafeDetails collects the safe details from the given error object and all its causes. The details are collected from outermost to innermost level of cause.
(err error)
| 51 | // and all its causes. |
| 52 | // The details are collected from outermost to innermost level of cause. |
| 53 | func GetAllSafeDetails(err error) []SafeDetailPayload { return errbase.GetAllSafeDetails(err) } |
| 54 | |
| 55 | // GetSafeDetails collects the safe details from the given error |
| 56 | // object. If it is a wrapper, only the details from the wrapper are |
searching dependent graphs…