(
self, msg: str, err_code: typing.List[rust_openssl.OpenSSLError]
)
| 44 | |
| 45 | class InternalError(Exception): |
| 46 | def __init__( |
| 47 | self, msg: str, err_code: typing.List[rust_openssl.OpenSSLError] |
| 48 | ) -> None: |
| 49 | super().__init__(msg) |
| 50 | self.err_code = err_code |
| 51 | |
| 52 | |
| 53 | class InvalidKey(Exception): |