Swift Do Catch

do {
    let sandwich = try makeMeSandwich(kitchen)
} catch let error {
    print(error.localizedDescription)
}
Testy Tortoise