>> I don't see how it gets more complicated if you really want to
>> ignore errors. If you really want to ignore errors, you have to do
>> this in Perl 5 right now anyway, but you say eval { ... }; instead.
> open ( FOO, "<$file" );
>ignores errors.
> eval ( open ( FOO, "<$file" ));
>ignores fatalities.
>However, if non-fatal errors are returned via exceptions, then they
>become harder to ignore than return codes that report non-fatal errors.
Have all here please looked at
use Fatal qw(:void open close);
yet?
thanks,
--tom
- On the case for exception-based error handling. Tony Olekshy
- Re: On the case for exception-based error handling. Chaim Frenkel
- Re: On the case for exception-based error handli... Tony Olekshy
- Re: On the case for exception-based error ha... Chaim Frenkel
- Re: On the case for exception-based erro... Markus Peter
- Re: On the case for exception-based... Glenn Linderman
- Re: On the case for exception-b... Tony Olekshy
- Re: On the case for excepti... Glenn Linderman
- Re: On the case for excepti... Tom Christiansen
- Re: On the case for excepti... Glenn Linderman
- Re: On the case for excepti... Tony Olekshy
- Re: On the case for excepti... Tony Olekshy
- Re: On the case for exception-based erro... Tony Olekshy
- Re: On the case for exception-based error handling. Markus Peter
- Re: On the case for exception-based error handli... Peter Scott
- Re: On the case for exception-based error ha... Tony Olekshy
- Re: On the case for exception-based erro... Peter Scott
- Re: On the case for exception-based... Tony Olekshy
- Re: On the case for exception-b... Peter Scott
