--- HTTP helpers ---
| 1375 | // --- HTTP helpers --- |
| 1376 | |
| 1377 | type APIError struct { |
| 1378 | Code string `json:"code"` |
| 1379 | Message string `json:"message"` |
| 1380 | Details json.RawMessage `json:"details,omitempty"` |
| 1381 | } |
| 1382 | |
| 1383 | func (e *APIError) Error() string { |
| 1384 | return e.Message |
nothing calls this directly
no outgoing calls
no test coverage detected