B. Watson 2ab679b3ac perl/perl-TryCatch: Wrap README at 72 columns. 2 years ago
..
README 2ab679b3ac perl/perl-TryCatch: Wrap README at 72 columns. 2 years ago
perl-TryCatch.SlackBuild 63daf9f79a All: Support $PRINT_PACKAGE_NAME env var 3 years ago
perl-TryCatch.info 9d480664ad perl/perl-TryCatch: Added (Try - Catch operators for Perl 5). 5 years ago
slack-desc 9d480664ad perl/perl-TryCatch: Added (Try - Catch operators for Perl 5). 5 years ago

README

Trycatch is an extension of the Perl 5 object system.

This module aims to provide a nicer syntax and method to catch errors
in Perl, similar to what is found in other languages (such as Java,
Python or C++). The standard method of using eval {}; if ($@) {} is
often prone to subtle bugs, primarily that its far too easy to stomp
on the error in error handlers. And also eval/if isn't the nicest
idiom.