Help for this page

Select Code to Download


  1. or download this
    my $ok = eval { do_something(); 1 };
    
    if (! $ok){
        handle_exception(); # possibly use contents of $@
    }
    
  2. or download this
    handle_exception() if ! $ok;
    
  3. or download this
    croak "damned module failed with a confusing error\n" if ! $ok;