You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
case400: returnlocalize('status.400','Bad request. The request cannot be fulfilled due to bad syntax.');
156
+
case401: returnlocalize('status.401','Unauthorized. The server is refusing to respond.');
157
+
case403: returnlocalize('status.403','Forbidden. The server is refusing to respond.');
158
+
case404: returnlocalize('status.404','Not Found. The requested location could not be found.');
159
+
case405: returnlocalize('status.405','Method not allowed. A request was made using a request method not supported by that location.');
160
+
case406: returnlocalize('status.406','Not Acceptable. The server can only generate a response that is not accepted by the client.');
161
+
case407: returnlocalize('status.407','Proxy Authentication Required. The client must first authenticate itself with the proxy.');
162
+
case408: returnlocalize('status.408','Request Timeout. The server timed out waiting for the request.');
163
+
case409: returnlocalize('status.409','Conflict. The request could not be completed because of a conflict in the request.');
164
+
case410: returnlocalize('status.410','Gone. The requested page is no longer available.');
165
+
case411: returnlocalize('status.411','Length Required. The "Content-Length" is not defined.');
166
+
case412: returnlocalize('status.412','Precondition Failed. The precondition given in the request evaluated to false by the server.');
167
+
case413: returnlocalize('status.413','Request Entity Too Large. The server will not accept the request, because the request entity is too large.');
168
+
case414: returnlocalize('status.414','Request-URI Too Long. The server will not accept the request, because the URL is too long.');
169
+
case415: returnlocalize('status.415','Unsupported Media Type. The server will not accept the request, because the media type is not supported.');
170
+
case500: returnlocalize('status.500','Internal Server Error.');
171
+
case501: returnlocalize('status.501','Not Implemented. The server either does not recognize the request method, or it lacks the ability to fulfill the request.');
172
+
case503: returnlocalize('status.503','Service Unavailable. The server is currently unavailable (overloaded or down).');
173
+
default: returnlocalize('status.416','HTTP status code {0}',status);
0 commit comments