--- HTTP helpers ---
| 1107 | // --- HTTP helpers --- |
| 1108 | |
| 1109 | type APIError struct { |
| 1110 | Code string `json:"code"` |
| 1111 | Message string `json:"message"` |
| 1112 | Details json.RawMessage `json:"details,omitempty"` |
| 1113 | } |
| 1114 | |
| 1115 | func (e *APIError) Error() string { |
| 1116 | return e.Message |
nothing calls this directly
no outgoing calls
no test coverage detected