Help for this page

Select Code to Download


  1. or download this
    BEGIN {
        require csLogs::Error;
        import csLogs::Error qw(a b);
    }
    
  2. or download this
    BEGIN {
        require "csLogs/Error.pm";
        csLogs::Error->import( qw(a b) );
    }
    
  3. or download this
    Exporter::import( "csLogs::Error", qw(a b) );
    UNIVERSAL::import( "csLogs::Error", qw(a b) );