Created
September 7, 2016 12:19
-
-
Save dfelber/49d1a99ba7749e70ee5d68bfc71ca2b6 to your computer and use it in GitHub Desktop.
Enum of HTTP Status codes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum StatusCode: Int { | |
// Informational | |
case Continue = 100 | |
case SwitchingProtocols = 101 | |
case Processing = 102 | |
// Success | |
case OK = 200 | |
case Created = 201 | |
case Accepted = 202 | |
case NonAuthoritativeInformation = 203 | |
case NoContent = 204 | |
case ResetContent = 205 | |
case PartialContent = 206 | |
case MultiStatus = 207 | |
case AlreadyReported = 208 | |
case IMUsed = 226 | |
// Redirection | |
case MultipleChoices = 300 | |
case MovedPermanently = 301 | |
case Found = 302 | |
case SeeOther = 303 | |
case NotModified = 304 | |
case UseProxy = 305 | |
case SwitchProxy = 306 | |
case TemporaryRedirect = 307 | |
case PermanentRedirect = 308 | |
// Client Error | |
case BadRequest = 400 | |
case Unauthorized = 401 | |
case PaymentRequired = 402 | |
case Forbidden = 403 | |
case NotFound = 404 | |
case MethodNotAllowed = 405 | |
case NotAcceptable = 406 | |
case ProxyAuthenticationRequired = 407 | |
case RequestTimeout = 408 | |
case Conflict = 409 | |
case Gone = 410 | |
case LengthRequired = 411 | |
case PreconditionFailed = 412 | |
case PayloadTooLarge = 413 | |
case URITooLong = 414 | |
case UnsupportedMediaType = 415 | |
case RangeNotSatisfiable = 416 | |
case ExpectationFailed = 417 | |
case IMATeapot = 418 | |
case MisdirectedRequest = 421 | |
case UnprocessableEntity = 422 | |
case Locked = 423 | |
case FailedDependency = 424 | |
case UpgradeRequired = 426 | |
case PreconditionRequired = 428 | |
case TooManyRequests = 429 | |
case RequestHeaderFieldsTooLarge = 431 | |
case UnavailableForLegalReasons = 451 | |
// Server Error | |
case InternalServerError = 500 | |
case NotImplemented = 501 | |
case BadGateway = 502 | |
case ServiceUnavailable = 503 | |
case GatewayTimeout = 504 | |
case HTTPVersionNotSupported = 505 | |
case VariantAlsoNegotiates = 506 | |
case InsufficientStorage = 507 | |
case LoopDetected = 508 | |
case NotExtended = 510 | |
case NetworkAuthenticationRequired = 511 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment