12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 'use strict'
- /*
- * node-res
- *
- * (c) Harminder Virk <virk@adonisjs.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- module.exports = {
- continue: 100,
- switchingProtocols: 101,
- ok: 200,
- created: 201,
- accepted: 202,
- nonAuthoritativeInformation: 203,
- noContent: 204,
- resetContent: 205,
- partialContent: 206,
- multipleChoices: 300,
- movedPermanently: 301,
- found: 302,
- seeOther: 303,
- notModified: 304,
- useProxy: 305,
- temporaryRedirect: 307,
- badRequest: 400,
- unauthorized: 401,
- paymentRequired: 402,
- forbidden: 403,
- notFound: 404,
- methodNotAllowed: 405,
- notAcceptable: 406,
- proxyAuthenticationRequired: 407,
- requestTimeout: 408,
- conflict: 409,
- gone: 410,
- lengthRequired: 411,
- preconditionFailed: 412,
- requestEntityTooLarge: 413,
- requestUriTooLong: 414,
- unsupportedMediaType: 415,
- requestedRangeNotSatisfiable: 416,
- expectationFailed: 417,
- unprocessableEntity: 422,
- tooManyRequests: 429,
- internalServerError: 500,
- notImplemented: 501,
- badGateway: 502,
- serviceUnavailable: 503,
- gatewayTimeout: 504,
- httpVersionNotSupported: 505
- }
|