Help for this page

Select Code to Download


  1. or download this
    package PkgB;
    sub errmsg {
       local $Carp::CarpLevel = $Carp::CarpLevel + 1;
       PkgA::errmsg(@_);
    }
    
  2. or download this
    package PkgB;
    our @ISA = 'PkgA';
    
  3. or download this
    package PkgB;
    our @CARP_NOT = 'PkgA';