(self)
| 93 | |
| 94 | @property |
| 95 | def exception(self) -> Exception | None: # pragma: no cover |
| 96 | warnings.warn( # deprecated in 10.3 - 2022-04-17 |
| 97 | "Request.exception is deprecated; use ServerProtocol.handshake_exc instead", |
| 98 | DeprecationWarning, |
| 99 | ) |
| 100 | return self._exception |
| 101 | |
| 102 | @classmethod |
| 103 | def parse( |
no outgoing calls