1from plain.http import Response 2 3 4class ResponseException(Exception): 5 def __init__(self, response: Response) -> None: 6 self.response = response 7 super().__init__(response)