- proper exception on erroneous usage of bare catch/finally (RT#81070)
- proper exception on erroneous use of multiple catch{} blocks
- clarify exception occuring on unterminated try block (RT#75712)
+ - fix the prototypes shown in docs to match code (RT#79590; thanks, Pushtaev
+ Vadim)
0.12
- doc fixes
Once all execution is finished then the C<finally> block, if given, will execute.
-=item catch (&;$)
+=item catch (&;@)
Intended to be used in the second argument position of C<try>.
local $@ = $_;
-=item finally (&;$)
+=item finally (&;@)
try { ... }
catch { ... }