Help for this page

Select Code to Download


  1. or download this
    eval { 
      die 'Ack!';
    ...
    
    exit;
    __END__
    
  2. or download this
    eval {
      # Something that can die ...
    };
    Your::CustomMod::launch_error( $@ ) if ( $@ );