Library to check the HTTP status and translate to status names
This library is a helper to determine the result of http responses and to translate them to human readable string
Below the list of functions provided by this library
Returns true if the response is informational (code >= 100 && code < 200)
Returns true if the response is successful (code >= 200 && code < 300)
Returns true if the response requested a redirection (code >= 300 && code < 400)
Returns true if the response is a client error (code >= 400 && code < 500)
Returns true if the response is a server error (code >= 500 && code < 600)
Returns true if the response indicates a client- or server error (code >= 400 && code < 600)
Returns the group of the response. If the group is not known, an empty string is returned
Returns the status of the response. If the status is not known, an empty string is returned