Plain is headed towards 1.0! Subscribe for development updates →
1from plain.http import ResponseBase 2 3 4class ResponseException(Exception): 5 def __init__(self, response: ResponseBase) -> None: 6 self.response = response 7 super().__init__(response)