| 204 | } |
| 205 | |
| 206 | type permanentError struct { |
| 207 | err net.Error |
| 208 | } |
| 209 | |
| 210 | func (e *permanentError) Error() string { return e.err.Error() } |
| 211 | func (e *permanentError) Unwrap() error { return e.err } |
nothing calls this directly
no outgoing calls
no test coverage detected