- or download this
use strict;
use warnings;
...
die $@ if $@;
# contiune with $excel object
- or download this
open DUMP, ">filename" or die "Can't open: $!\n";
- or download this
if ($@) { # something bad occures
if ($@ =~ /TIME OUT/) {
...
}
# continue here