()
| 35 | } |
| 36 | |
| 37 | func (e *httpClientError) Error() string { return e.msg } |
| 38 | func (e *httpClientError) IsRateLimit() bool { return e.code == 429 } |
| 39 | func (e *httpClientError) IsNotFound() bool { return e.code == 404 } |
| 40 | func (e *httpClientError) IsPermissionDenied() bool { return e.code == 401 } |
no outgoing calls