Perlcritic complaints that the following code, some boilerplate DBI stuff that works perfectly fine, should croak() instead of die():
#Connect to database
my $db_handle = DBI->connect( $url, $user, $password )
or die $DBI::errstr;
All these while, die()-ing seems to work fine for me.
I would think for a samurai Perl warrior, croak()-ing is less honorable than actually die()-ing when things go awry.
Jokes aside ..
Why should I croak() instead of die()?
What are the consequences of not heeding perlcritic's advice?