Help for this page

Select Code to Download


  1. or download this
    package Err;
    use base qw( Exporter );
    ...
        @{$self}{keys %$opts}= values %$opts;
        return $self;
    }
    
  2. or download this
    use Err qw( $ErrHandle );
    # Set script-specific defaults:
    ...
    my $accountingErrHandle= $ErrHandle->new()->Configure(
        {Message=>"Please notify Bob"} );
    $accountingErrHandle->Report(...);