Help for this page

Select Code to Download


  1. or download this
        $SIG{__WARN__} = \&log_error;
        $SIG{__DIE__} = sub { log_fatal_error( @_ ); exit 1 };
    
  2. or download this
    $SIG{__DIE__} = sub { print "good-by\n" };
    eval {
        die "adios";
    }