### begin_: file metadata ### <region-file_info> ### main: ### - name : TryCatch: try catch block ### desc : a simple try-catch block example in perl ### date : created="Thu 2005-12-01 10:58:09" ### last : lastmod="Thu 2005-12-01 10:58:13" ### tags : try catch finally error perl cfTryCatch exception ### </region-file_info> ### begin_: init perl use strict; use warnings; ### begin_: try-catch block print "begin \n"; eval{ ### try block print Non_Existent_Function(); }; if ($@){ ### catch block print "Failed \n"; }; print "end \n";
You need to create an account or log in to post comments to this site.