--- HTTP helpers ---
| 1392 | // --- HTTP helpers --- |
| 1393 | |
| 1394 | type APIError struct { |
| 1395 | Code string `json:"code"` |
| 1396 | Message string `json:"message"` |
| 1397 | Details json.RawMessage `json:"details,omitempty"` |
| 1398 | } |
| 1399 | |
| 1400 | func (e *APIError) Error() string { |
| 1401 | return e.Message |
nothing calls this directly
no outgoing calls
no test coverage detected