Help for this page

Select Code to Download


  1. or download this
    if( $@ =~ /some error stuff/ ) {
        warn "error stuff occurred";
    ...
    else { 
        warn "some other message" ;
    }
    
  2. or download this
    if($@) { Oops; }