in reply to Re: Error Handling Misconception
in thread Error Handling Misconception
Thanks for the suggestion. That doesn't seem to be it, though: I still get the program dying w/o error if I do just this:
my $value = eval { $object->next_value() }; if ($@) { print "BLAH!\n"; } print $value, "\n";
...and no output to screen.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Error Handling Misconception
by bobn (Chaplain) on Sep 03, 2003 at 23:10 UTC | |
|
Re: Re: Re: Error Handling Misconception
by selk (Beadle) on Sep 04, 2003 at 04:18 UTC | |
|
Re: Re: Re: Error Handling Misconception
by Anonymous Monk on Sep 03, 2003 at 23:54 UTC |