enum | HttpResponseCode {
HttpResponseCode::REQUEST_NOT_MADE = -1,
HttpResponseCode::CONTINUE = 100,
HttpResponseCode::SWITCHING_PROTOCOLS = 101,
HttpResponseCode::PROCESSING = 102,
HttpResponseCode::OK = 200,
HttpResponseCode::CREATED = 201,
HttpResponseCode::ACCEPTED = 202,
HttpResponseCode::NON_AUTHORITATIVE_INFORMATION = 203,
HttpResponseCode::NO_CONTENT = 204,
HttpResponseCode::RESET_CONTENT = 205,
HttpResponseCode::PARTIAL_CONTENT = 206,
HttpResponseCode::MULTI_STATUS = 207,
HttpResponseCode::ALREADY_REPORTED = 208,
HttpResponseCode::IM_USED = 226,
HttpResponseCode::MULTIPLE_CHOICES = 300,
HttpResponseCode::MOVED_PERMANENTLY = 301,
HttpResponseCode::FOUND = 302,
HttpResponseCode::SEE_OTHER = 303,
HttpResponseCode::NOT_MODIFIED = 304,
HttpResponseCode::USE_PROXY = 305,
HttpResponseCode::SWITCH_PROXY = 306,
HttpResponseCode::TEMPORARY_REDIRECT = 307,
HttpResponseCode::PERMANENT_REDIRECT = 308,
HttpResponseCode::BAD_REQUEST = 400,
HttpResponseCode::UNAUTHORIZED = 401,
HttpResponseCode::PAYMENT_REQUIRED = 402,
HttpResponseCode::FORBIDDEN = 403,
HttpResponseCode::NOT_FOUND = 404,
HttpResponseCode::METHOD_NOT_ALLOWED = 405,
HttpResponseCode::NOT_ACCEPTABLE = 406,
HttpResponseCode::PROXY_AUTHENTICATION_REQUIRED = 407,
HttpResponseCode::REQUEST_TIMEOUT = 408,
HttpResponseCode::CONFLICT = 409,
HttpResponseCode::GONE = 410,
HttpResponseCode::LENGTH_REQUIRED = 411,
HttpResponseCode::PRECONDITION_FAILED = 412,
HttpResponseCode::REQUEST_ENTITY_TOO_LARGE = 413,
HttpResponseCode::REQUEST_URI_TOO_LONG = 414,
HttpResponseCode::UNSUPPORTED_MEDIA_TYPE = 415,
HttpResponseCode::REQUESTED_RANGE_NOT_SATISFIABLE = 416,
HttpResponseCode::EXPECTATION_FAILED = 417,
HttpResponseCode::IM_A_TEAPOT = 418,
HttpResponseCode::AUTHENTICATION_TIMEOUT = 419,
HttpResponseCode::METHOD_FAILURE = 420,
HttpResponseCode::UNPROC_ENTITY = 422,
HttpResponseCode::LOCKED = 423,
HttpResponseCode::FAILED_DEPENDENCY = 424,
HttpResponseCode::UPGRADE_REQUIRED = 426,
HttpResponseCode::PRECONDITION_REQUIRED = 427,
HttpResponseCode::TOO_MANY_REQUESTS = 429,
HttpResponseCode::REQUEST_HEADER_FIELDS_TOO_LARGE = 431,
HttpResponseCode::LOGIN_TIMEOUT = 440,
HttpResponseCode::NO_RESPONSE = 444,
HttpResponseCode::RETRY_WITH = 449,
HttpResponseCode::BLOCKED = 450,
HttpResponseCode::REDIRECT = 451,
HttpResponseCode::REQUEST_HEADER_TOO_LARGE = 494,
HttpResponseCode::CERT_ERROR = 495,
HttpResponseCode::NO_CERT = 496,
HttpResponseCode::HTTP_TO_HTTPS = 497,
HttpResponseCode::CLIENT_CLOSED_TO_REQUEST = 499,
HttpResponseCode::INTERNAL_SERVER_ERROR = 500,
HttpResponseCode::NOT_IMPLEMENTED = 501,
HttpResponseCode::BAD_GATEWAY = 502,
HttpResponseCode::SERVICE_UNAVAILABLE = 503,
HttpResponseCode::GATEWAY_TIMEOUT = 504,
HttpResponseCode::HTTP_VERSION_NOT_SUPPORTED = 505,
HttpResponseCode::VARIANT_ALSO_NEGOTIATES = 506,
HttpResponseCode::INSUFFICIENT_STORAGE = 506,
HttpResponseCode::LOOP_DETECTED = 508,
HttpResponseCode::BANDWIDTH_LIMIT_EXCEEDED = 509,
HttpResponseCode::NOT_EXTENDED = 510,
HttpResponseCode::NETWORK_AUTHENTICATION_REQUIRED = 511,
HttpResponseCode::NETWORK_READ_TIMEOUT = 598,
HttpResponseCode::NETWORK_CONNECT_TIMEOUT = 599
} |