Help for this page

Select Code to Download


  1. or download this
        my %ubackup = %udat;
        eval {
    ...
            %udat = %ubackup;
            die $@;
        }
    
  2. or download this
    sub DESTROY {
        my ($self) = @_;
    ...
            $self->_unbind;
        };
    }
    
  3. or download this
        local $@;
        eval {
            $self->_unbind;
        };