Help for this page

Select Code to Download


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