Skip to content

No Response Error

griddy / nfl / errors / no_response_error**

no_response_error

Classes

NoResponseError dataclass

NoResponseError(message: str = 'No response received')

Bases: Exception


              flowchart TD
              griddy.nfl.errors.no_response_error.NoResponseError[NoResponseError]

              

              click griddy.nfl.errors.no_response_error.NoResponseError href "" "griddy.nfl.errors.no_response_error.NoResponseError"
            

Error raised when no HTTP response is received from the server.

Source code in griddy/nfl/errors/no_response_error.py
def __init__(self, message: str = "No response received"):
    object.__setattr__(self, "message", message)
    super().__init__(message)