-
-
Save hassoon1986/636e0f0a0eb4d7083bdb3ba32d3a025f to your computer and use it in GitHub Desktop.
NSURLErrorDomain codes
This file contains 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
kCFURLErrorUnknown = -998, | |
kCFURLErrorCancelled = -999, | |
kCFURLErrorBadURL = -1000, | |
kCFURLErrorTimedOut = -1001, | |
kCFURLErrorUnsupportedURL = -1002, | |
kCFURLErrorCannotFindHost = -1003, | |
kCFURLErrorCannotConnectToHost = -1004, | |
kCFURLErrorNetworkConnectionLost = -1005, | |
kCFURLErrorDNSLookupFailed = -1006, | |
kCFURLErrorHTTPTooManyRedirects = -1007, | |
kCFURLErrorResourceUnavailable = -1008, | |
kCFURLErrorNotConnectedToInternet = -1009, | |
kCFURLErrorRedirectToNonExistentLocation = -1010, | |
kCFURLErrorBadServerResponse = -1011, | |
kCFURLErrorUserCancelledAuthentication = -1012, | |
kCFURLErrorUserAuthenticationRequired = -1013, | |
kCFURLErrorZeroByteResource = -1014, | |
kCFURLErrorCannotDecodeRawData = -1015, | |
kCFURLErrorCannotDecodeContentData = -1016, | |
kCFURLErrorCannotParseResponse = -1017, | |
kCFURLErrorInternationalRoamingOff = -1018, | |
kCFURLErrorCallIsActive = -1019, | |
kCFURLErrorDataNotAllowed = -1020, | |
kCFURLErrorRequestBodyStreamExhausted = -1021, | |
kCFURLErrorFileDoesNotExist = -1100, | |
kCFURLErrorFileIsDirectory = -1101, | |
kCFURLErrorNoPermissionsToReadFile = -1102, | |
kCFURLErrorDataLengthExceedsMaximum = -1103, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment