Help for this page

Select Code to Download


  1. or download this
        die if $@ && $@ !~ /^Can't locate .*? at \(eval /;
    
  2. or download this
                        Carp::croak(<<ERROR);
    Base class package "$base" is empty.
        (Perhaps you need to 'use' the module which defines that package f
    +irst.)
    ERROR
    
  3. or download this
    use strict;
    BEGIN {
    ...
    use base 'Foo::Bar';
    package main;
    print "done\n.";