Skip to content

Instantly share code, notes, and snippets.

@meyusufdemirci
Created April 12, 2022 13:25
Show Gist options
  • Save meyusufdemirci/03158f65d7816ed9e517effc2d42f6cb to your computer and use it in GitHub Desktop.
Save meyusufdemirci/03158f65d7816ed9e517effc2d42f6cb to your computer and use it in GitHub Desktop.
Error Handling Article
enum NetworkError: String, Error {
case userNotFound = "USER_NOT_FOUND"
var userFriendlyDescription: String {
"NetworkError.\(self)".localized
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment