in reply to Re^3: Perl OO Lint
in thread Perl OO Lint
Maybe that had something to do with why I wasn't getting the object-method-not-found error?eval { $lock->remove() }; if ($@) { if (my $exception = My::Exception::Lock::NotFound->caught()) { warn $exception; } else { die $@; } }
|
|---|