Hacker News new | ask | show | jobs
by dep_b 284 days ago
But that's exactly what typed throws do?

`static func validate(name: String) throws(ValidationError)`

Would be handled as:

```

do {

    try UsernameValidator.validate(name: name)
} catch {

    switch error {

    case .emptyName:

        print("You've submitted an empty name!")

    case .nameTooShort(let nameLength):

        print("The submitted name is too short!")

    }
}

```

See: https://www.avanderlee.com/swift/typed-throws/

1 comments

Oh I see, the original article didn’t use this syntax.