Back OT, if the conditional were to change to ... if ($@ =~ /can't call method without a package or object ref/) {..., then the problem would, methinx, be circumvented unless there was a package perverse enough to die "can't call method..." in an overloaded isa().
Yes. Except that I always hated this kind of hack, because it relies on the exact phrase of the error message. Which might be subject to change, to l10n or whatever.
BTW, wouldn't your latter point put at risk all that we're told regarding the use (pun unintended this time:-) of eval to catch errors and handle them locally - the risk of DESTROY f%*&^ing things up in such circumstances must be almost omnipresent... mustn't it ??

Yes, it is indeed. There was a lengthy thread on p5p about that, and how to fix it.

Thankfully only very few modules actually use a eval inside a DESTROY block without localizing $@ first.

If you don't need a return value from the eval block, you can also do this check:

my $success = eval { # your stuff here... 1; };

and then check for the truthness of $success.


In reply to Re^3: To be, or not to be, an object ? by moritz
in thread To be, or not to be, an object ? by Bloodnok

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.