We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently there is no catch all option for Try and Do - maybe we should have one?
The text was updated successfully, but these errors were encountered:
What do you think using catch without type and variable as the last block?
catch
try { } catch String => error { } catch { /* This catches everything else. */ }
for do it would come before the finally block:
do
finally
do { } catch String => error { } catch { /* This catches everything else. */ } finally { }
Sorry, something went wrong.
Looks good :)
It's available in 0.3.0
No branches or pull requests
Currently there is no catch all option for Try and Do - maybe we should have one?
The text was updated successfully, but these errors were encountered: