TryCatch: Simple Try Catch Block In Perl
Join the DZone community and get the full member experience.
Join For Free
### begin_: file metadata
###
### 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
###
### 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";
Blocks
Perl (programming language)
Opinions expressed by DZone contributors are their own.
Comments