libtrycatch-perl 1.003000-1 source package in Ubuntu

Changelog

libtrycatch-perl (1.003000-1) unstable; urgency=low

  * Initial packaging release.
    Closes: bug#626702.
 -- Ubuntu Archive Auto-Sync <email address hidden>   Sun,  22 May 2011 19:50:11 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Oneiric
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libtrycatch-perl_1.003000.orig.tar.gz 85.0 KiB ae035067ff2b93bad779e28c838618ac7f388ec2167c9c2745026b54dee4924f
libtrycatch-perl_1.003000-1.debian.tar.gz 3.6 KiB 5e3c05461b65d1a9b5fed39e278344e084c2c08a54aeb23ca9d3b9233afe967a
libtrycatch-perl_1.003000-1.dsc 2.3 KiB d1c8500b86bd9b6315df326525de217af73e04147a397ff61bd9f35c1a689b86

View changes file

Binary packages built by this source

libtrycatch-perl: first class try catch semantics for Perl

 TryCatch 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.