When I used try catch exception handling at work, I had the following questions:
-
How does the key word
finallyworks? -
When we use nested
catch, could the one in child suppress the parent/consumer? -
Why there are more than one
catchin the sametrycode block?
So I created this code playground for experiments.