Help for this page

Select Code to Download


  1. or download this
    sub exception (;$) { 
        my $wanted_exception = shift;
    ...
        return 1 unless defined $wanted_exception;
        return ref($@) && $@->isa( $wanted_exception )
    };
    
  2. or download this
        eval { $coderef->() };
        if ( exception 'IOException' ) {
    ...
        } else {
            ... we lived ...
        };