Skip to content

Instantly share code, notes, and snippets.

@madmag77
Created March 5, 2021 09:23
Show Gist options
  • Save madmag77/5405b3f51b8216273bddcce66017bb77 to your computer and use it in GitHub Desktop.
Save madmag77/5405b3f51b8216273bddcce66017bb77 to your computer and use it in GitHub Desktop.
[Dart article] Async code exceptions 8
try {
Timer.run(() {
print('Timer runs.');
throw Exception('[Timer] Bad thing happens!');
});
print('Everything is fine!');
} on IntegerDivisionByZeroException {
print('Cant divide to zero');
} finally {
print('Clean-up done');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment