(self, message, response)
| 79 | class RequestError(Exception): |
| 80 | """Raised by Client methods when an HTTP request fails.""" |
| 81 | def __init__(self, message, response): |
| 82 | super(RequestError, self).__init__(message) |
| 83 | self.response = response |
| 84 | |
| 85 | |
| 86 | class QueryError(Exception): |