JoinWithDepth is like Join but the depth at which the call stack is captured can be specified.
(depth int, errs ...error)
| 214 | // JoinWithDepth is like Join but the depth at which the call stack is |
| 215 | // captured can be specified. |
| 216 | func JoinWithDepth(depth int, errs ...error) error { |
| 217 | return errutil.JoinWithDepth(depth+1, errs...) |
| 218 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…