in reply to Re: Automatic stack traces for warns and dies
in thread Automatic stack traces for warns and dies
eval { something_that_might_die()}; if ($@->isa('FileException')) { handle_file_exception } else { die $@; }
|
|---|
| Replies are listed 'Best First'. |
|---|