Skip to content

Instantly share code, notes, and snippets.

@mxcl
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mxcl/f5335918d4876f7ed435 to your computer and use it in GitHub Desktop.
Save mxcl/f5335918d4876f7ed435 to your computer and use it in GitHub Desktop.
firstly {
NSURLSession.GET(url)
}.then { (dict: NSDictionary) in
//…
}.catch { (err: Error.JSONError) in
// The token `JSONError` is defined in PromiseKit
}.catch { (err: Error.HTTPError) in
switch err.statusCode {
case 400: //…
//…
}
}.finally {
//…
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment