Handling try and throws in Swift 3

The difference here is that Data(contentsOf: url) does not return an Optional anymore, it throws.

So you can use it in Do-Catch but without guard:

do {
    let data = try Data(contentsOf: url)
    // do something with data
    // if the call fails, the catch block is executed
} catch {
    print(error.localizedDescription)
}

Note that you could still use guard with try? instead of try but then the possible error message is ignored. In this case, you don’t need a Do-Catch block:

guard let data = try? Data(contentsOf: url) else {
    print("There was an error!")
    // return or break
}
// do something with data

Leave a Comment

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)