errorString is a trivial implementation of error.
| 34 | |
| 35 | // errorString is a trivial implementation of error. |
| 36 | type errorString struct { |
| 37 | s string |
| 38 | } |
| 39 | |
| 40 | func (e *errorString) Error() string { |
| 41 | return e.s |
nothing calls this directly
no outgoing calls
no test coverage detected