| 24 | } |
| 25 | |
| 26 | type HTTPError struct { |
| 27 | StatusCode int |
| 28 | ErrorResponse |
| 29 | } |
| 30 | |
| 31 | func (e *HTTPError) Error() string { |
| 32 | return fmt.Sprintf("HTTP %d: %s, Details: %v", e.StatusCode, e.Message, e.Details) |
nothing calls this directly
no outgoing calls
no test coverage detected