Private
| 32 | // Private |
| 33 | |
| 34 | type describedError struct { |
| 35 | msg string |
| 36 | description string |
| 37 | } |
| 38 | |
| 39 | func (e *describedError) Error() string { return e.msg } |
| 40 | func (e *describedError) Description() string { return e.description } |
nothing calls this directly
no outgoing calls
no test coverage detected