errstring converts an error to its string representation.
(err error)
| 429 | |
| 430 | // errstring converts an error to its string representation. |
| 431 | func errstring(err error) string { |
| 432 | if err != nil { |
| 433 | return err.Error() |
| 434 | } |
| 435 | return "" |
| 436 | } |
no test coverage detected