Help for this page

Select Code to Download


  1. or download this
    sub bar
    {
    ...
      eval { $self->method( @args ); 1} 
           or $self->raise_error( $@, @_ ) and return undef;
    }
    
  2. or download this
    sub bar
    {
    ...
      eval { $self->method( @args ); 1} 
           or return $self->raise_error( $@, @_ );
    }