Help for this page

Select Code to Download


  1. or download this
    if($object->method) { .. } else { my $error = $object->error(); }
    
  2. or download this
    sub foo {
    
    ...
             return(1);
             }
    }
    
  3. or download this
    sub error {
    
    ...
    
     return($self->{'Error'});
    }
    
  4. or download this
    sub raise_error {
    
    ...
     $self->{'Raise'} = $_[0] if( defined($_[0]) );
     return($self->{'Raise'});
    }