| 15 | |
| 16 | |
| 17 | class UnsupportedAlgorithm(Exception): |
| 18 | def __init__( |
| 19 | self, message: str, reason: typing.Optional[_Reasons] = None |
| 20 | ) -> None: |
| 21 | super().__init__(message) |
| 22 | self._reason = reason |
| 23 | |
| 24 | |
| 25 | class AlreadyFinalized(Exception): |
no outgoing calls