| 46 | super().__init__(*args) |
| 47 | |
| 48 | class SxTQueryError(Exception): |
| 49 | def __init__(self, *args: object, **kwargs) -> None: |
| 50 | log_if_logger(*args, **kwargs) |
| 51 | super().__init__(*args) |
| 52 | |
| 53 | class SxTAuthenticationError(Exception): |
| 54 | def __init__(self, *args: object, **kwargs) -> None: |
no outgoing calls