--- HTTP helpers ---
| 1209 | // --- HTTP helpers --- |
| 1210 | |
| 1211 | type APIError struct { |
| 1212 | Code string `json:"code"` |
| 1213 | Message string `json:"message"` |
| 1214 | Details json.RawMessage `json:"details,omitempty"` |
| 1215 | } |
| 1216 | |
| 1217 | func (e *APIError) Error() string { |
| 1218 | return e.Message |
nothing calls this directly
no outgoing calls
no test coverage detected