didier/didier/exceptions/http_exception.py

9 lines
228 B
Python

__all__ = ["HTTPException"]
class HTTPException(RuntimeError):
"""Error raised when an API call fails"""
def __init__(self, status_code: int):
super().__init__(f"Something went wrong (status {status_code}).")