--- HTTP helpers ---
| 1058 | // --- HTTP helpers --- |
| 1059 | |
| 1060 | type APIError struct { |
| 1061 | Code string `json:"code"` |
| 1062 | Message string `json:"message"` |
| 1063 | Details json.RawMessage `json:"details,omitempty"` |
| 1064 | } |
| 1065 | |
| 1066 | func (e *APIError) Error() string { |
| 1067 | return e.Message |
nothing calls this directly
no outgoing calls
no test coverage detected