| 192 | } |
| 193 | |
| 194 | type permanentError struct { |
| 195 | err net.Error |
| 196 | } |
| 197 | |
| 198 | func (e *permanentError) Error() string { return e.err.Error() } |
| 199 | func (e *permanentError) Unwrap() error { return e.err } |
nothing calls this directly
no outgoing calls
no test coverage detected