Skip to content

Instantly share code, notes, and snippets.

@chriswebb09
Created May 11, 2017 15:25
Show Gist options
  • Save chriswebb09/7e7e9ad8c9f0d94955c153da407c59ed to your computer and use it in GitHub Desktop.
Save chriswebb09/7e7e9ad8c9f0d94955c153da407c59ed to your computer and use it in GitHub Desktop.
import Foundation
extension NSError {
static func generalParsingError(domain: String) -> Error {
return NSError(domain: domain, code: 400, userInfo: [NSLocalizedDescriptionKey : NSLocalizedString("Error retrieving data", comment: "General Parsing Error Description")])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment