| 12345678910111213 | from http import HTTPStatusfrom typing import Any__all__ = ["ApiException"]class ApiException(ValueError):    def __init__(self, obj: Any, status: HTTPStatus):        self.status = status        super().__init__(obj)    def __str__(self):        return f"{self.status}: {super().__str__()}"
 |