It satisfies the error interface.
()
| 22 | |
| 23 | // It satisfies the error interface. |
| 24 | func (e wrapperError) Error() string { |
| 25 | return e.msg |
| 26 | } |
| 27 | |
| 28 | // Root returns the original error that was wrapped by one or more |
| 29 | // calls to Wrap. If e does not wrap other errors, it will be returned |
no outgoing calls