Is it possible to retrieve an exception inside a guard-statement with “try?”?
I have found page no 42 in “The Swift Programming Language (Swift 2.2 Prerelease)” where it states explicitly the following: Another way to handle errors is to use try? to convert the result to an optional. If the function throws an error, the specific error is discarded and the result is nil. Otherwise, the result … Read more