Advertisement
Guest User

Untitled

a guest
Sep 16th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.25 KB | None | 0 0
  1. func makeASandwich() throws {
  2.     // ...
  3. }
  4.  
  5. do {
  6.     try makeASandwich()
  7.     eatASandwich()
  8. } catch SandwichError.outOfCleanDishes {
  9.     washDishes()
  10. } catch SandwichError.missingIngredients(let ingredients) {
  11.     buyGroceries(ingredients)
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement