Skip to content

Instantly share code, notes, and snippets.

@armcknight
Last active May 19, 2017 03:39
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 armcknight/81cc09a5185b35f2c52c2d3fa48b5ee8 to your computer and use it in GitHub Desktop.
Save armcknight/81cc09a5185b35f2c52c2d3fa48b5ee8 to your computer and use it in GitHub Desktop.
Throwing an error in swift.
class AnObject {
func resultOfWork() throws -> Any {/* ... */}
}
func doSomeWork() throws -> Any {
let result = try anObjectInstance.resultOfWork()
// ...
return result
}
do {
let result = try doSomeWork()
// work with result
} catch {
// log and show error alert
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment