Native error handling
Languages such as Java and C# generally refer to the error handling process as exception handling; within the Swift documentation, Apple refers to this process as error handling. While on the outside, the Java and C# exception handling may look somewhat similar to Swift's error handling, there are some significant differences that those familiar with exception handling in the other language will notice throughout this chapter.
Representing errors
Before we can really understand how error handling works in Swift, we must see how we would represent an error. In Swift, errors are represented by values of types that conform to the Error
protocol. Swift's enumerations are very well-suited to modeling error conditions because generally ...
Get Mastering Swift 3 now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.