If there was an error on the request, raise an `HTTPError`.
(self)
| 678 | return self._body |
| 679 | |
| 680 | def rethrow(self) -> None: |
| 681 | """If there was an error on the request, raise an `HTTPError`.""" |
| 682 | if self.error: |
| 683 | raise self.error |
| 684 | |
| 685 | def __repr__(self) -> str: |
| 686 | args = ",".join("%s=%r" % i for i in sorted(self.__dict__.items())) |
no outgoing calls