I'm learning Perl, and in a lot of the examples I see errors are handled like this
open FILE, "file.txt" or die $!;
Is die in the middle of a script really the best way to deal with an error?
|
I'm learning Perl, and in a lot of the examples I see errors are handled like this
Is |
|||||
|
|
Whether confess in the Carp package: For handling exceptions from Perl builtins, I like to use autodie. It catches failures from |
|||||||
|
|
Since I use Log::Log4perl almost everywhere, I use It is better to catch your exceptions with Try::Tiny (see its documentation why). |
|||
|
|
|
Unless you've got a more specific idea, then yes you want to die when unexpected things happen.
So I think the general idea is: yes, DIE unless you have a better idea of how things should be handled. If you put enough foresight into it, you can be forgiven for the one or two times you don't die, because you know you don't need to. |
|||
|
|
|
The more modern approach is to use the Carp standard library.
The main advantage is it gives a stack trace on death. |
|||||||||||||||
|
|
I use die but I wrap it in eval blocks for control over the error handling:
If the 'eval' fails:
If the 'eval' succeeds:
|
|||||||||||
|