(self, real_error: Optional[BaseException] = None)
| 96 | """ |
| 97 | |
| 98 | def __init__(self, real_error: Optional[BaseException] = None) -> None: |
| 99 | super().__init__("Stream is closed") |
| 100 | self.real_error = real_error |
| 101 | |
| 102 | |
| 103 | class UnsatisfiableReadError(Exception): |