NSError
To err is human. To
NSErroris Cocoa.
All programs on a Unix system are a child process of another process, forking all the way from the original process, the unmoved mover: pid 1 (which in the case of OS X is launchd). When the executable finishes, it communicates a status code between 0 and 255 to its parent, as a way to communicate why or how the process exited. 0 means “everything exited normally; nothing to report here”, while any non-zero value indicates something that the parent process should be aware of. Exit status codes may be used to indicate whether the process crashed, or terminated prematurely. By some conventions, the higher the return value, the more severe the cause of the error.
In an OO paradigm processes are, for the most part, abstracted away, leaving only objects and the messages they pass between one another. That distinction between success and failure (and between different varieties of failure) is still useful in object-oriented programming. But considering that methods are often wont to return values other than BOOL, this can create something of a predicament.
Languages more drama-prone and trigger-happy than Objective-C reconcile this by abusing the hell out of exceptions, raising at even the slightest breach in contract. To our good fortune as Cocoanauts, however, Objective-C takes a more civilized approach when it comes to giving us bad news, and that approach is NSError.
NSError is the unsung hero of the Foundation framework. Passed gallantly in and out of perilous method calls, it is the messenger by which we are able to contextualize our failures. No news is good news, when it comes to such matters, but passing a nil pointer to an NSError ** isn’t going to do you any favors.
NSError is toll-free bridged with CFError, but it’s unlikely that you’ll ever find a reason to dip down to its Core Foundation counterpart.
Each NSError object encodes three critical pieces of information: a status code, corresponding to a particular error domain, as well as additional context provided by a user dictionary.
              code & domain
            
            Like exit status codes, an NSError -code signals the nature of the problem. These status codes are defined within a particular error domain, in order to avoid overlap and confusion. These status codes are generally defined by constants in an enum.
For example, in the NSCocoa, the status code for an error caused by NSFile attempting to access a non-existant file is 4, as defined by NSFile. However, 4 in NSPOSIXError refers to a POSIX EINTR, or “interupted function” error.
Now, anyone coming from a systems programming background may have just had a vision of a switch statement with smatterings of printf to translate numeric constants into something human-readable. NSError is way ahead of you.
  user
What gives NSError its particular charm is everyone’s favorite grab bag property: user. As a convention throughout Cocoa, user is a dictionary that contains arbitrary key-value pairs that, whether for reasons of subclassing or schematic sparsity, are not suited to full-fledged properties in and of themselves. In the case of NSError, there are several special keys that correspond to readonly properties.
Three are generally useful:
- 
    localized(Description NSLocalized): A localized description of the error.Description Key 
- 
  localized(Recovery Suggestion NSLocalized): A localized recovery suggestion for the error.Recovery Suggestion Error Key 
- 
  localized(Failure Reason NSLocalized): A localized explanation of the reason for the error.Failure Reason Error Key 
…whereas three others are specific to OS X:
- 
    localized(Recovery Options NSLocalized): An array containing the localized titles of buttons appropriate for displaying in an alert panelRecovery Options Error Key 
- 
  recovery(Attempter NSRecovery)Attempter Error Key 
- 
  help(Anchor NSHelp): Used by an alert panel by a help anchor button.Anchor Error Key 
Here’s how to construct NSError with a user dictionary:
NSDictionary *userThe advantage of encapsulating this information in an object like NSError, as opposed to, say, throwing exceptions willy-nilly, is that these error objects can be easily passed between different objects and contexts.
For example, a controller that calls a method that populates an NSError ** (as discussed in the next section) might pass that error into an alert view:
[[[UIAlertAs a brief non-sequitur: one clever hack used by C functions to communicate errors is to encode 4-letter ASCII sequences in the 32 bit return type. It’s no
localized, but it’s better than cross-referencing error codes from a table every time!Description 
For sake of completeness: here is a list of the standard NSError user keys:
- NSLocalized- Description - Key 
- NSLocalized- Failure - Reason - Error - Key 
- NSLocalized- Recovery - Suggestion - Error - Key 
- NSLocalized- Recovery - Options - Error - Key 
- NSFile- Path - Error - Key 
- NSString- Encoding - Error - Key 
- NSUnderlying- Error - Key 
- NSRecovery- Attempter - Error - Key 
- NSHelp- Anchor - Error - Key 
  Using NSError
There are two ways in which you will encounter NSError: as a consumer and as a producer.
Consuming
As a consumer, you are primarily concerned with methods that have a final parameter of type NSError **. Again, this is to get around the single return value constraint of Objective-C; by passing a pointer to an uninitialized NSError * variable, that variable will be populated with any error the method encounters:
NSError *error = nil;
BOOL success = [[NSFileAccording to Cocoa conventions, methods returning
BOOLto indicate success or failure are encouraged to have a finalNSError **parameter if there are multiple failure conditions to distinguish between. A good guideline is whether you could imagine thatNSErrorbubbling up, and being presented to the user.
Another way NSError objects are passed is the inclusion of an NSError * argument in completion blocks. This gets around both a constraint on single value returns as well as one on that value being returned synchronously. This has become especially popular with newer Foundation APIs, like NSURLSession:
NSURL *URL = [NSURL URLWithProducing
One would be well-advised to follow the same conventions for error handling as other Foundation classes. In situations where a custom method invokes a method with an NSError ** parameter, it is usually a good idea to similarly pass that NSError ** parameter into the signature of the custom method. More substantial apps or libraries are encouraged to define their own error domains and error code constants as suitable.
To pass an error to an NSError ** parameter, do the following:
- (BOOL)validateThe root error, if one exists, should be returned as part of your custom error’s user dictionary as the value for NSUnderlying.
  NSURLError & CFNetwork
The greatest source of failure in iOS apps is networking. Between radios, transport, data roaming policies, proxies, security, authentication, and any number of protocol-specific negotiation, there is a lot that can go wrong.
On the plus side, the Foundation URL Loading system is incredibly mature, and takes care of most of that for you. The only negative is that the documentation for all of the various things that can go wrong is scattered across different programming guides and headers. If you get a request failing with error -1004, it can be surprisingly difficult to figure out exactly what that means.
As such, here is an exhaustive, well-formatted table at your disposal:
| Code | Description | 
|---|---|
| -1 NSURLError | |
| 1 k | Indicates that the DNS lookup failed. | 
| 2 k | An unknown error occurred (a name server failure, for example). For additional information, query the kCFGetAddrInfoFailureKey to get the value returned from getaddrinfo; lookup in netdb.h | 
| 100 k | The SOCKS server rejected access because it does not support connections with the requested SOCKS version.Query kCFSOCKSStatusCodeKey to recover the status code returned by the server. | 
| 101 k | The version of SOCKS requested by the server is not supported. Query kCFSOCKSStatusCodeKey to recover the status code returned by the server. | 
SOCKS4 Errors
| Code | Description | 
|---|---|
| 110 k | Request rejected or failed by the server. | 
| 111 k | Request rejected because SOCKS server cannot connect to identd on the client. | 
| 112 k | Request rejected because the client program and identd report different user-ids. | 
| 113 k | The status code returned by the server is unknown. | 
SOCKS5 Errors
| Code | Description | 
|---|---|
| 120 k | The stream is not in a state that allows the requested operation. | 
| 121 k | The address type returned is not supported. | 
| 122 k | The SOCKS server refused the client connection because of bad login credentials. | 
| 123 k | The requested method is not supported. Query kCFSOCKSNegotiationMethodKey to find the method requested. | 
| 124 k | The client and server could not find a mutually agreeable authentication method. | 
FTP Errors
| Code | Description | 
|---|---|
| 200 k | The server returned an unexpected status code. Query the kCFFTPStatusCodeKey to get the status code returned by the server | 
HTTP Errors
| Code | Description | 
|---|---|
| 300 k | The client and server could not agree on a supported authentication type. | 
| 301 k | The credentials provided for an authenticated connection were rejected by the server. | 
| 302 k | The connection to the server was dropped. This usually indicates a highly overloaded server. | 
| 303 k | The HTTP server response could not be parsed. | 
| 304 k | Too many HTTP redirects occurred before reaching a page that did not redirect the client to another page. This usually indicates a redirect loop. | 
| 305 k | The requested URL could not be retrieved. | 
| 306 k | A connection could not be established to the HTTP proxy. | 
| 307 k | The authentication credentials provided for logging into the proxy were rejected. | 
| 308 k | An error occurred with the proxy autoconfiguration file. | 
| 309 k | The authentication credentials provided by the proxy autoconfiguration file were rejected. | 
| 310 k | A connection could not be established to the HTTPS proxy. | 
| 311 k | The HTTPS proxy returned an unexpected status code, such as a 3xx redirect. | 
CFURLConnection & CFURLProtocol Errors
| Code | Description | 
|---|---|
| -998 k | An unknown error occurred. | 
| -999 kNSURLError | The connection was cancelled. | 
| -1000 kNSURLError | The connection failed due to a malformed URL. | 
| -1001 kNSURLError | The connection timed out. | 
| -1002 kNSURLError | The connection failed due to an unsupported URL scheme. | 
| -1003 kNSURLError | The connection failed because the host could not be found. | 
| -1004 kNSURLError | The connection failed because a connection cannot be made to the host. | 
| -1005 kNSURLError | The connection failed because the network connection was lost. | 
| -1006 kNSURLError | The connection failed because the DNS lookup failed. | 
| -1007 kNSURLError | The HTTP connection failed due to too many redirects. | 
| -1008 kNSURLError | The connection’s resource is unavailable. | 
| -1009 kNSURLError | The connection failed because the device is not connected to the internet. | 
| -1010 kNSURLError | The connection was redirected to a nonexistent location. | 
| -1011 kNSURLError | The connection received an invalid server response. | 
| -1012 kNSURLError | The connection failed because the user cancelled required authentication. | 
| -1013 kNSURLError | The connection failed because authentication is required. | 
| -1014 kNSURLError | The resource retrieved by the connection is zero bytes. | 
| -1015 kNSURLError | The connection cannot decode data encoded with a known content encoding. | 
| -1016 kNSURLError | The connection cannot decode data encoded with an unknown content encoding. | 
| -1017 kNSURLError | The connection cannot parse the server’s response. | 
| -1018 k | The connection failed because international roaming is disabled on the device. | 
| -1019 k | The connection failed because a call is active. | 
| -1020 k | The connection failed because data use is currently not allowed on the device. | 
| -1021 k | The connection failed because its request’s body stream was exhausted. | 
File Errors
| Code | Description | 
|---|---|
| -1100 kNSURLError | The file operation failed because the file does not exist. | 
| -1101 kNSURLError | The file operation failed because the file is a directory. | 
| -1102 kNSURLError | The file operation failed because it does not have permission to read the file. | 
| -1103 kNSURLError | The file operation failed because the file is too large. | 
SSL Errors
| Code | Description | 
|---|---|
| -1200 kNSURLError | The secure connection failed for an unknown reason. | 
| -1201 kNSURLError | The secure connection failed because the server’s certificate has an invalid date. | 
| -1202 kNSURLError | The secure connection failed because the server’s certificate is not trusted. | 
| -1203 kNSURLError | The secure connection failed because the server’s certificate has an unknown root. | 
| -1204 kNSURLError | The secure connection failed because the server’s certificate is not yet valid. | 
| -1205 kNSURLError | The secure connection failed because the client’s certificate was rejected. | 
| -1206 kNSURLError | The secure connection failed because the server requires a client certificate. | 
Download and File I/O Errors
| Code | Description | 
|---|---|
| -2000 kNSURLError | The connection failed because it is being required to return a cached resource, but one is not available. | 
| -3000 kNSURLError | The file cannot be created. | 
| -3001 kNSURLError | The file cannot be opened. | 
| -3002 kNSURLError | The file cannot be closed. | 
| -3003 kNSURLError | The file cannot be written. | 
| -3004 kNSURLError | The file cannot be removed. | 
| -3005 kNSURLError | The file cannot be moved. | 
| -3006 kNSURLError | The download failed because decoding of the downloaded data failed mid-stream. | 
| -3007 kNSURLError | The download failed because decoding of the downloaded data failed to complete. | 
Cookie errors
| Code | Description | 
|---|---|
| -4000 k | The cookie file cannot be parsed. | 
CFNetServices Errors
| Code | Description | 
|---|---|
| -72000L k | An unknown error occurred. | 
| -72001L k | An attempt was made to use a name that is already in use. | 
| -72002L k | Not used. | 
| -72003L k | A new search could not be started because a search is already in progress. | 
| -72004L k | A required argument was not provided or was not valid. | 
| -72005L k | The search or service was cancelled. | 
| -72006L k | Invalid data was passed to a CFNetServices function. | 
| -72007L k | A search failed because it timed out. | 
| -73000L k | An error from DNS discovery; look at kCFDNSServiceFailureKey to get the error number and interpret using dnssd.h | 
Having scrolled down through that huge table, you might be expecting the usual NSHipster philosophical wrap-up. Not this week. Do you have any idea how long it took to compile that table? It’s all, like, NSRepetitive up in here.
Such are the error of my ways.