In VB, it's possible to instruct the program to continue even if an unexpected error occurs. Is there an equivalent way to do that in Perl? My problem is that I'm using Net::FTP, and that module times out after a few seconds, and my Perl program halts and exists without giving me a choice to reconnect and try again. How can I handle errors like this and keep my Perl program running?
Thanks in advance.