Error returns the wrapped error's message.
()
| 91 | |
| 92 | // Error returns the wrapped error's message. |
| 93 | func (e *permanent) Error() string { return e.err.Error() } |
| 94 | |
| 95 | // Unwrap returns the wrapped error. |
| 96 | func (e *permanent) Unwrap() error { return e.err } |
no outgoing calls