Help for this page

Select Code to Download


  1. or download this
    eval "require $module" or $self->error("...");
    
  2. or download this
    try 
        "require $module" # It's not going to work
    catch {
        $self->error("...");
    }
    
  3. or download this
    try {
        eval "require $module" or die $@;
    ...
    catch {
        $self->error("...");
    }