Skip to content

Instantly share code, notes, and snippets.

@Samasaur1
Created November 19, 2018 23:22
Show Gist options
  • Save Samasaur1/73c3ce8b899e9ee48e18d8799bd5996a to your computer and use it in GitHub Desktop.
Save Samasaur1/73c3ce8b899e9ee48e18d8799bd5996a to your computer and use it in GitHub Desktop.
Throw errors in non-throwing functions
public func nonThrowingFunc() {
do {
try APICall()
} catch let APIError {
try! {
throw MyError
}()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment