- or download this
Found use of die. Use an exception instead at line 38, column 8. Exce
+ption objects
should be used instead of the standard Perl error mechanism. (Severit
+y: 4)
- or download this
$hECO = retrieve($ECO_path)
or die "Couldn't open $ECO_path : $!";
...
or die "Couldn't open $NIC_path : $!";
$hOpening = retrieve($Opening_path)
or die "Couldn't open $Opening_path : $!";
- or download this
eval {
$hECO = retrieve($ECO_path);
...
print "Couldn't open $Opening_path : $@";
exit;
}