Unwrap returns the wrapped error.
()
| 87 | |
| 88 | // Unwrap returns the wrapped error. |
| 89 | func (e *WrappedError) Unwrap() error { |
| 90 | return e.error |
| 91 | } |
| 92 | |
| 93 | // Cause returns the wrapped error. |
| 94 | // This method is provided for compatibility with github.com/pkg/errors. |
no outgoing calls
no test coverage detected