remote error, used wrap the error response before sending
| 18 | // remote error, used wrap the error response before sending |
| 19 | |
| 20 | type codedError struct { |
| 21 | err error |
| 22 | code int |
| 23 | } |
| 24 | |
| 25 | func (err *codedError) Error() string { |
| 26 | return err.err.Error() |
nothing calls this directly
no outgoing calls
no test coverage detected