RosettaCodeData/Task/Exceptions/Swift/exceptions-3.swift
2023-07-01 13:44:08 -04:00

7 lines
159 B
Swift

do {
try foo()
} catch MyException.TerribleException { // this can be any pattern
//Catch a specific case of exception
} catch {
//Catch any exception
}