ErrUnreachable wraps transport errors (refused, timeout, DNS miss) so the TUI can render a hint instead of a raw wrap.
| 105 | // ErrUnreachable wraps transport errors (refused, timeout, DNS miss) so the TUI |
| 106 | // can render a hint instead of a raw wrap. |
| 107 | type ErrUnreachable struct{ Err error } |
| 108 | |
| 109 | func (e ErrUnreachable) Error() string { return "backend unreachable: " + e.Err.Error() } |
| 110 | func (e ErrUnreachable) Unwrap() error { return e.Err } |
nothing calls this directly
no outgoing calls
no test coverage detected