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