| 233 | } |
| 234 | |
| 235 | type HTTPError struct { |
| 236 | Message string `json:"message"` |
| 237 | Example string `json:"example"` |
| 238 | } |
| 239 | |
| 240 | func (e *HTTPError) Error() string { |
| 241 | return e.Message |
nothing calls this directly
no outgoing calls
no test coverage detected