@opengg/status-es
Version:
A lightweight, tree-shakable utility for HTTP status codes and reason phrases in TypeScript/JavaScript. Auto-generated and ESM-compatible.
175 lines (174 loc) • 22.5 kB
JavaScript
import { ACCEPTED, ALREADY_REPORTED, A_TIMEOUT_OCCURRED, BAD_GATEWAY, BAD_REQUEST, BANDWIDTH_LIMIT_EXCEEDED, BLOCKED_BY_WINDOWS_PARENTAL_CONTROLS, CLIENT_CLOSED_REQUEST, CONFLICT, CONNECTION_CLOSED_WITHOUT_RESPONSE, CONNECTION_TIMED_OUT, CONTINUE, CREATED, EARLY_HINTS, EXPECTATION_FAILED, FAILED_DEPENDENCY, FORBIDDEN, FOUND, GATEWAY_TIMEOUT, GONE, HTTP_REQUEST_SENT_TO_HTTPS_PORT, HTTP_VERSION_NOT_SUPPORTED, IM_USED, INSUFFICIENT_STORAGE, INTERNAL_SERVER_ERROR, INVALID_SSL_CERTIFICATE, INVALID_TOKEN_ESRI_, I_M_A_TEAPOT, LENGTH_REQUIRED, LOCKED, LOGIN_TIME_OUT, LOOP_DETECTED, METHOD_FAILURE_SPRING_FRAMEWORK_, METHOD_NOT_ALLOWED, MISDIRECTED_REQUEST, MOVED_PERMANENTLY, MULTIPLE_CHOICES, MULTI_STATUS, NETWORK_AUTHENTICATION_REQUIRED, NETWORK_READ_TIMEOUT_ERROR, NON_AUTHORITATIVE_INFORMATION, NOT_ACCEPTABLE, NOT_EXTENDED, NOT_FOUND, NOT_IMPLEMENTED, NOT_MODIFIED, NO_CONTENT, OK, ORIGIN_DNS_ERROR, ORIGIN_IS_UNREACHABLE, PAGE_EXPIRED_LARAVEL_FRAMEWORK_, PARTIAL_CONTENT, PAYMENT_REQUIRED, PRECONDITION_FAILED, PRECONDITION_REQUIRED, PROCESSING, PROXY_AUTHENTICATION_REQUIRED, RAILGUN_LISTENER_TO_ORIGIN_ERROR, REQUESTED_RANGE_NOT_SATISFIABLE, REQUEST_ENTITY_TOO_LARGE, REQUEST_HEADER_FIELDS_TOO_LARGE, REQUEST_HEADER_TOO_LARGE, REQUEST_TIMEOUT, REQUEST_URI_TOO_LONG, RESET_CONTENT, RESUME_INCOMPLETE, RETRY_WITH, SEE_OTHER, SERVICE_UNAVAILABLE, SSL_CERTIFICATE_ERROR, SSL_CERTIFICATE_REQUIRED, SSL_HANDSHAKE_FAILED, SWITCHING_PROTOCOLS, SWITCH_PROXY, TEMPORARY_REDIRECT, THIS_IS_FINE_APACHE_WEB_SERVER_, TOO_MANY_REQUESTS, UNAUTHORIZED, UNAVAILABLE_FOR_LEGAL_REASONS, UNKNOWN_ERROR, UNPROCESSABLE_ENTITY, UNSUPPORTED_MEDIA_TYPE, UPGRADE_REQUIRED, VARIANT_ALSO_NEGOTIATES, WEB_SERVER_IS_DOWN } from "./status-code.js";
const reason_phrase_CONTINUE = 'The server has received the request headers, and the client should proceed to send the request body.';
const reason_phrase_SWITCHING_PROTOCOLS = 'The requester has asked the server to switch protocols.';
const reason_phrase_PROCESSING = 'This code indicates that the server has received and is processing the request, but no response is available yet. This prevents the client from timing out and assuming the request was lost.';
const reason_phrase_EARLY_HINTS = 'Used to return some response headers before final HTTP message.';
const reason_phrase_OK = 'The request is OK (this is the standard response for successful HTTP requests).';
const reason_phrase_CREATED = 'The request has been fulfilled, and a new resource is created.';
const reason_phrase_ACCEPTED = 'The request has been accepted for processing, but the processing has not been completed.';
const reason_phrase_NON_AUTHORITATIVE_INFORMATION = 'The request has been successfully processed, but is returning information that may be from another source.';
const reason_phrase_NO_CONTENT = 'The request has been successfully processed, but is not returning any content.';
const reason_phrase_RESET_CONTENT = 'The request has been successfully processed, but is not returning any content, and requires that the requester reset the document view.';
const reason_phrase_PARTIAL_CONTENT = 'The server is delivering only part of the resource due to a range header sent by the client.';
const reason_phrase_MULTI_STATUS = 'The message body that follows is by default an XML message and can contain a number of separate response codes, depending on how many sub-requests were made.';
const reason_phrase_ALREADY_REPORTED = 'The members of a DAV binding have already been enumerated in a preceding part of the (multistatus) response, and are not being included again.';
const reason_phrase_THIS_IS_FINE_APACHE_WEB_SERVER_ = 'Used as a catch-all error condition for allowing response bodies to flow through Apache when ProxyErrorOverride is enabled.';
const reason_phrase_IM_USED = 'The server has fulfilled a request for the resource, and the response is a representation of the result of one or more instance-manipulations applied to the current instance.';
const reason_phrase_MULTIPLE_CHOICES = 'A link list. The user can select a link and go to that location. Maximum five addresses.';
const reason_phrase_MOVED_PERMANENTLY = 'The requested page has moved to a new URL.';
const reason_phrase_FOUND = 'The requested page has moved temporarily to a new URL.';
const reason_phrase_SEE_OTHER = 'The requested page can be found under a different URL.';
const reason_phrase_NOT_MODIFIED = 'Indicates the requested page has not been modified since last requested.';
const reason_phrase_SWITCH_PROXY = 'No longer used. Originally meant "Subsequent requests should use the specified proxy."';
const reason_phrase_TEMPORARY_REDIRECT = 'The requested page has moved temporarily to a new URL.';
const reason_phrase_RESUME_INCOMPLETE = 'Used in the resumable requests proposal to resume aborted PUT or POST requests.';
const reason_phrase_BAD_REQUEST = 'The request cannot be fulfilled due to bad syntax.';
const reason_phrase_UNAUTHORIZED = 'The request was a legal request, but the server is refusing to respond to it. For use when authentication is possible but has failed or not yet been provided.';
const reason_phrase_PAYMENT_REQUIRED = 'Not yet implemented by RFC standards, but reserved for future use.';
const reason_phrase_FORBIDDEN = 'The request was a legal request, but the server is refusing to respond to it.';
const reason_phrase_NOT_FOUND = 'The requested page could not be found but may be available again in the future.';
const reason_phrase_METHOD_NOT_ALLOWED = 'A request was made of a page using a request method not supported by that page.';
const reason_phrase_NOT_ACCEPTABLE = 'The server can only generate a response that is not accepted by the client.';
const reason_phrase_PROXY_AUTHENTICATION_REQUIRED = 'The client must first authenticate itself with the proxy.';
const reason_phrase_REQUEST_TIMEOUT = 'The server timed out waiting for the request.';
const reason_phrase_CONFLICT = 'The request could not be completed because of a conflict in the request.';
const reason_phrase_GONE = 'The requested page is no longer available.';
const reason_phrase_LENGTH_REQUIRED = 'The "Content-Length" is not defined. The server will not accept the request without it.';
const reason_phrase_PRECONDITION_FAILED = 'The precondition given in the request evaluated to false by the server.';
const reason_phrase_REQUEST_ENTITY_TOO_LARGE = 'The server will not accept the request, because the request entity is too large.';
const reason_phrase_REQUEST_URI_TOO_LONG = 'The server will not accept the request, because the URL is too long. Occurs when you convert a POST request to a GET request with a long query information.';
const reason_phrase_UNSUPPORTED_MEDIA_TYPE = 'The server will not accept the request, because the media type is not supported.';
const reason_phrase_REQUESTED_RANGE_NOT_SATISFIABLE = 'The client has asked for a portion of the file, but the server cannot supply that portion.';
const reason_phrase_EXPECTATION_FAILED = 'The server cannot meet the requirements of the Expect request-header field.';
const reason_phrase_I_M_A_TEAPOT = 'Any attempt to brew coffee with a teapot should result in the error code "418 I\'m a teapot". The resulting entity body MAY be short and stout.';
const reason_phrase_PAGE_EXPIRED_LARAVEL_FRAMEWORK_ = 'Used by the Laravel Framework when a CSRF Token is missing or expired.';
const reason_phrase_METHOD_FAILURE_SPRING_FRAMEWORK_ = 'A deprecated response used by the Spring Framework when a method has failed.';
const reason_phrase_MISDIRECTED_REQUEST = 'The request was directed at a server that is not able to produce a response (for example because a connection reuse).';
const reason_phrase_UNPROCESSABLE_ENTITY = 'The request was well-formed but was unable to be followed due to semantic errors.';
const reason_phrase_LOCKED = 'The resource that is being accessed is locked.';
const reason_phrase_FAILED_DEPENDENCY = 'The request failed due to failure of a previous request (e.g., a PROPPATCH).';
const reason_phrase_UPGRADE_REQUIRED = 'The client should switch to a different protocol such as TLS/1.0, given in the Upgrade header field.';
const reason_phrase_PRECONDITION_REQUIRED = 'The origin server requires the request to be conditional.';
const reason_phrase_TOO_MANY_REQUESTS = 'The user has sent too many requests in a given amount of time. Intended for use with rate limiting schemes.';
const reason_phrase_REQUEST_HEADER_FIELDS_TOO_LARGE = 'The server is unwilling to process the request because either an individual header field, or all the header fields collectively, are too large.';
const reason_phrase_LOGIN_TIME_OUT = "The client's session has expired and must log in again. (IIS)";
const reason_phrase_CONNECTION_CLOSED_WITHOUT_RESPONSE = 'A non-standard status code used to instruct nginx to close the connection without sending a response to the client, most commonly used to deny malicious or malformed requests.';
const reason_phrase_RETRY_WITH = 'The server cannot honour the request because the user has not provided the required information. (IIS)';
const reason_phrase_BLOCKED_BY_WINDOWS_PARENTAL_CONTROLS = 'The Microsoft extension code indicated when Windows Parental Controls are turned on and are blocking access to the requested webpage.';
const reason_phrase_UNAVAILABLE_FOR_LEGAL_REASONS = 'A server operator has received a legal demand to deny access to a resource or to a set of resources that includes the requested resource.';
const reason_phrase_REQUEST_HEADER_TOO_LARGE = 'Used by nginx to indicate the client sent too large of a request or header line that is too long.';
const reason_phrase_SSL_CERTIFICATE_ERROR = 'An expansion of the 400 Bad Request response code, used when the client has provided an invalid client certificate.';
const reason_phrase_SSL_CERTIFICATE_REQUIRED = 'An expansion of the 400 Bad Request response code, used when a client certificate is required but not provided.';
const reason_phrase_HTTP_REQUEST_SENT_TO_HTTPS_PORT = 'An expansion of the 400 Bad Request response code, used when the client has made a HTTP request to a port listening for HTTPS requests.';
const reason_phrase_INVALID_TOKEN_ESRI_ = 'Returned by ArcGIS for Server. Code 498 indicates an expired or otherwise invalid token.';
const reason_phrase_CLIENT_CLOSED_REQUEST = 'A non-standard status code introduced by nginx for the case when a client closes the connection while nginx is processing the request.';
const reason_phrase_INTERNAL_SERVER_ERROR = "An error has occurred in a server side script, a no more specific message is suitable.";
const reason_phrase_NOT_IMPLEMENTED = 'The server either does not recognize the request method, or it lacks the ability to fulfill the request.';
const reason_phrase_BAD_GATEWAY = 'The server was acting as a gateway or proxy and received an invalid response from the upstream server.';
const reason_phrase_SERVICE_UNAVAILABLE = 'The server is currently unavailable (overloaded or down).';
const reason_phrase_GATEWAY_TIMEOUT = 'The server was acting as a gateway or proxy and did not receive a timely response from the upstream server.';
const reason_phrase_HTTP_VERSION_NOT_SUPPORTED = 'The server does not support the HTTP protocol version used in the request.';
const reason_phrase_VARIANT_ALSO_NEGOTIATES = 'Transparent content negotiation for the request results in a circular reference.';
const reason_phrase_INSUFFICIENT_STORAGE = 'The server is unable to store the representation needed to complete the request.';
const reason_phrase_LOOP_DETECTED = 'The server detected an infinite loop while processing the request (sent instead of 208 Already Reported).';
const reason_phrase_BANDWIDTH_LIMIT_EXCEEDED = 'The server has exceeded the bandwidth specified by the server administrator; this is often used by shared hosting providers to limit the bandwidth of customers.';
const reason_phrase_NOT_EXTENDED = 'Further extensions to the request are required for the server to fulfil it.';
const reason_phrase_NETWORK_AUTHENTICATION_REQUIRED = 'The client needs to authenticate to gain network access.';
const reason_phrase_UNKNOWN_ERROR = 'The 520 error is used as a "catch-all response for when the origin server returns something unexpected", listing connection resets, large headers, and empty or invalid responses as common triggers.';
const reason_phrase_WEB_SERVER_IS_DOWN = 'The origin server has refused the connection from Cloudflare.';
const reason_phrase_CONNECTION_TIMED_OUT = 'Cloudflare could not negotiate a TCP handshake with the origin server.';
const reason_phrase_ORIGIN_IS_UNREACHABLE = 'Cloudflare could not reach the origin server; for example, if the DNS records for the origin server are incorrect.';
const reason_phrase_A_TIMEOUT_OCCURRED = 'Cloudflare was able to complete a TCP connection to the origin server, but did not receive a timely HTTP response.';
const reason_phrase_SSL_HANDSHAKE_FAILED = 'Cloudflare could not negotiate a SSL/TLS handshake with the origin server.';
const reason_phrase_INVALID_SSL_CERTIFICATE = "Used by Cloudflare and Cloud Foundry's gorouter to indicate failure to validate the SSL/TLS certificate that the origin server presented.";
const reason_phrase_RAILGUN_LISTENER_TO_ORIGIN_ERROR = 'Error 527 indicates that the request timed out or failed after the WAN connection had been established.';
const reason_phrase_ORIGIN_DNS_ERROR = 'Error 530 indicates that the requested host name could not be resolved on the Cloudflare network to an origin server.';
const reason_phrase_NETWORK_READ_TIMEOUT_ERROR = 'Used by some HTTP proxies to signal a network read timeout behind the proxy to a client in front of the proxy.';
const ReasonPhrases = {
[]: 'Continue',
[]: 'Switching Protocols',
[]: 'Processing',
[]: 'Early Hints',
[]: 'OK',
[]: 'Created',
[]: 'Accepted',
[]: 'Non-Authoritative Information',
[]: 'No Content',
[]: 'Reset Content',
[]: 'Partial Content',
[]: 'Multi-Status',
[]: 'Already Reported',
[]: 'This is fine (Apache Web Server)',
[]: 'IM Used',
[]: 'Multiple Choices',
[]: 'Moved Permanently',
[]: 'Found',
[]: 'See Other',
[]: 'Not Modified',
[]: 'Switch Proxy',
[]: 'Temporary Redirect',
[]: 'Resume Incomplete',
[]: 'Bad Request',
[]: 'Unauthorized',
[]: 'Payment Required',
[]: 'Forbidden',
[]: 'Not Found',
[]: 'Method Not Allowed',
[]: 'Not Acceptable',
[]: 'Proxy Authentication Required',
[]: 'Request Timeout',
[]: 'Conflict',
[]: 'Gone',
[]: 'Length Required',
[]: 'Precondition Failed',
[]: 'Request Entity Too Large',
[]: 'Request-URI Too Long',
[]: 'Unsupported Media Type',
[]: 'Requested Range Not Satisfiable',
[]: 'Expectation Failed',
[]: "I'm a teapot",
[]: 'Page Expired (Laravel Framework)',
[]: 'Method Failure (Spring Framework)',
[]: 'Misdirected Request',
[]: 'Unprocessable Entity',
[]: 'Locked',
[]: 'Failed Dependency',
[]: 'Upgrade Required',
[]: 'Precondition Required',
[]: 'Too Many Requests',
[]: 'Request Header Fields Too Large',
[]: 'Login Time-out',
[]: 'Connection Closed Without Response',
[]: 'Retry With',
[]: 'Blocked by Windows Parental Controls',
[]: 'Unavailable For Legal Reasons',
[]: 'Request Header Too Large',
[]: 'SSL Certificate Error',
[]: 'SSL Certificate Required',
[]: 'HTTP Request Sent to HTTPS Port',
[]: 'Invalid Token (Esri)',
[]: 'Client Closed Request',
[]: 'Internal Server Error',
[]: 'Not Implemented',
[]: 'Bad Gateway',
[]: 'Service Unavailable',
[]: 'Gateway Timeout',
[]: 'HTTP Version Not Supported',
[]: 'Variant Also Negotiates',
[]: 'Insufficient Storage',
[]: 'Loop Detected',
[]: 'Bandwidth Limit Exceeded',
[]: 'Not Extended',
[]: 'Network Authentication Required',
[]: 'Unknown Error',
[]: 'Web Server Is Down',
[]: 'Connection Timed Out',
[]: 'Origin Is Unreachable',
[]: 'A Timeout Occurred',
[]: 'SSL Handshake Failed',
[]: 'Invalid SSL Certificate',
[]: 'Railgun Listener to Origin Error',
[]: 'Origin DNS Error',
[]: 'Network Read Timeout Error'
};
export { reason_phrase_ACCEPTED as ACCEPTED, reason_phrase_ALREADY_REPORTED as ALREADY_REPORTED, reason_phrase_A_TIMEOUT_OCCURRED as A_TIMEOUT_OCCURRED, reason_phrase_BAD_GATEWAY as BAD_GATEWAY, reason_phrase_BAD_REQUEST as BAD_REQUEST, reason_phrase_BANDWIDTH_LIMIT_EXCEEDED as BANDWIDTH_LIMIT_EXCEEDED, reason_phrase_BLOCKED_BY_WINDOWS_PARENTAL_CONTROLS as BLOCKED_BY_WINDOWS_PARENTAL_CONTROLS, reason_phrase_CLIENT_CLOSED_REQUEST as CLIENT_CLOSED_REQUEST, reason_phrase_CONFLICT as CONFLICT, reason_phrase_CONNECTION_CLOSED_WITHOUT_RESPONSE as CONNECTION_CLOSED_WITHOUT_RESPONSE, reason_phrase_CONNECTION_TIMED_OUT as CONNECTION_TIMED_OUT, reason_phrase_CONTINUE as CONTINUE, reason_phrase_CREATED as CREATED, reason_phrase_EARLY_HINTS as EARLY_HINTS, reason_phrase_EXPECTATION_FAILED as EXPECTATION_FAILED, reason_phrase_FAILED_DEPENDENCY as FAILED_DEPENDENCY, reason_phrase_FORBIDDEN as FORBIDDEN, reason_phrase_FOUND as FOUND, reason_phrase_GATEWAY_TIMEOUT as GATEWAY_TIMEOUT, reason_phrase_GONE as GONE, reason_phrase_HTTP_REQUEST_SENT_TO_HTTPS_PORT as HTTP_REQUEST_SENT_TO_HTTPS_PORT, reason_phrase_HTTP_VERSION_NOT_SUPPORTED as HTTP_VERSION_NOT_SUPPORTED, reason_phrase_IM_USED as IM_USED, reason_phrase_INSUFFICIENT_STORAGE as INSUFFICIENT_STORAGE, reason_phrase_INTERNAL_SERVER_ERROR as INTERNAL_SERVER_ERROR, reason_phrase_INVALID_SSL_CERTIFICATE as INVALID_SSL_CERTIFICATE, reason_phrase_INVALID_TOKEN_ESRI_ as INVALID_TOKEN_ESRI_, reason_phrase_I_M_A_TEAPOT as I_M_A_TEAPOT, reason_phrase_LENGTH_REQUIRED as LENGTH_REQUIRED, reason_phrase_LOCKED as LOCKED, reason_phrase_LOGIN_TIME_OUT as LOGIN_TIME_OUT, reason_phrase_LOOP_DETECTED as LOOP_DETECTED, reason_phrase_METHOD_FAILURE_SPRING_FRAMEWORK_ as METHOD_FAILURE_SPRING_FRAMEWORK_, reason_phrase_METHOD_NOT_ALLOWED as METHOD_NOT_ALLOWED, reason_phrase_MISDIRECTED_REQUEST as MISDIRECTED_REQUEST, reason_phrase_MOVED_PERMANENTLY as MOVED_PERMANENTLY, reason_phrase_MULTIPLE_CHOICES as MULTIPLE_CHOICES, reason_phrase_MULTI_STATUS as MULTI_STATUS, reason_phrase_NETWORK_AUTHENTICATION_REQUIRED as NETWORK_AUTHENTICATION_REQUIRED, reason_phrase_NETWORK_READ_TIMEOUT_ERROR as NETWORK_READ_TIMEOUT_ERROR, reason_phrase_NON_AUTHORITATIVE_INFORMATION as NON_AUTHORITATIVE_INFORMATION, reason_phrase_NOT_ACCEPTABLE as NOT_ACCEPTABLE, reason_phrase_NOT_EXTENDED as NOT_EXTENDED, reason_phrase_NOT_FOUND as NOT_FOUND, reason_phrase_NOT_IMPLEMENTED as NOT_IMPLEMENTED, reason_phrase_NOT_MODIFIED as NOT_MODIFIED, reason_phrase_NO_CONTENT as NO_CONTENT, reason_phrase_OK as OK, reason_phrase_ORIGIN_DNS_ERROR as ORIGIN_DNS_ERROR, reason_phrase_ORIGIN_IS_UNREACHABLE as ORIGIN_IS_UNREACHABLE, reason_phrase_PAGE_EXPIRED_LARAVEL_FRAMEWORK_ as PAGE_EXPIRED_LARAVEL_FRAMEWORK_, reason_phrase_PARTIAL_CONTENT as PARTIAL_CONTENT, reason_phrase_PAYMENT_REQUIRED as PAYMENT_REQUIRED, reason_phrase_PRECONDITION_FAILED as PRECONDITION_FAILED, reason_phrase_PRECONDITION_REQUIRED as PRECONDITION_REQUIRED, reason_phrase_PROCESSING as PROCESSING, reason_phrase_PROXY_AUTHENTICATION_REQUIRED as PROXY_AUTHENTICATION_REQUIRED, reason_phrase_RAILGUN_LISTENER_TO_ORIGIN_ERROR as RAILGUN_LISTENER_TO_ORIGIN_ERROR, reason_phrase_REQUESTED_RANGE_NOT_SATISFIABLE as REQUESTED_RANGE_NOT_SATISFIABLE, reason_phrase_REQUEST_ENTITY_TOO_LARGE as REQUEST_ENTITY_TOO_LARGE, reason_phrase_REQUEST_HEADER_FIELDS_TOO_LARGE as REQUEST_HEADER_FIELDS_TOO_LARGE, reason_phrase_REQUEST_HEADER_TOO_LARGE as REQUEST_HEADER_TOO_LARGE, reason_phrase_REQUEST_TIMEOUT as REQUEST_TIMEOUT, reason_phrase_REQUEST_URI_TOO_LONG as REQUEST_URI_TOO_LONG, reason_phrase_RESET_CONTENT as RESET_CONTENT, reason_phrase_RESUME_INCOMPLETE as RESUME_INCOMPLETE, reason_phrase_RETRY_WITH as RETRY_WITH, ReasonPhrases, reason_phrase_SEE_OTHER as SEE_OTHER, reason_phrase_SERVICE_UNAVAILABLE as SERVICE_UNAVAILABLE, reason_phrase_SSL_CERTIFICATE_ERROR as SSL_CERTIFICATE_ERROR, reason_phrase_SSL_CERTIFICATE_REQUIRED as SSL_CERTIFICATE_REQUIRED, reason_phrase_SSL_HANDSHAKE_FAILED as SSL_HANDSHAKE_FAILED, reason_phrase_SWITCHING_PROTOCOLS as SWITCHING_PROTOCOLS, reason_phrase_SWITCH_PROXY as SWITCH_PROXY, reason_phrase_TEMPORARY_REDIRECT as TEMPORARY_REDIRECT, reason_phrase_THIS_IS_FINE_APACHE_WEB_SERVER_ as THIS_IS_FINE_APACHE_WEB_SERVER_, reason_phrase_TOO_MANY_REQUESTS as TOO_MANY_REQUESTS, reason_phrase_UNAUTHORIZED as UNAUTHORIZED, reason_phrase_UNAVAILABLE_FOR_LEGAL_REASONS as UNAVAILABLE_FOR_LEGAL_REASONS, reason_phrase_UNKNOWN_ERROR as UNKNOWN_ERROR, reason_phrase_UNPROCESSABLE_ENTITY as UNPROCESSABLE_ENTITY, reason_phrase_UNSUPPORTED_MEDIA_TYPE as UNSUPPORTED_MEDIA_TYPE, reason_phrase_UPGRADE_REQUIRED as UPGRADE_REQUIRED, reason_phrase_VARIANT_ALSO_NEGOTIATES as VARIANT_ALSO_NEGOTIATES, reason_phrase_WEB_SERVER_IS_DOWN as WEB_SERVER_IS_DOWN };