libexception-class-trycatch-perl 1.13-2 source package in Ubuntu
Changelog
libexception-class-trycatch-perl (1.13-2) unstable; urgency=medium [ Salvatore Bonaccorso ] * Update Vcs-Browser URL to cgit web frontend * debian/control: Use HTTPS transport protocol for Vcs-Git URI [ gregor herrmann ] * debian/copyright: change Copyright-Format 1.0 URL to HTTPS. * Remove Jaldhar H. Vyas from Uploaders. Thanks for your work! * Remove Jose Luis Rivas from Uploaders. Thanks for your work! [ Salvatore Bonaccorso ] * Update Vcs-* headers for switch to salsa.debian.org [ gregor herrmann ] * debian/*: update URLs from {search,www}.cpan.org to MetaCPAN. * debian/watch: use uscan version 4. [ Debian Janitor ] * Bump debhelper from deprecated 8 to 12. * Set debhelper-compat version in Build-Depends. * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, Repository-Browse. -- Jelmer Vernooij <email address hidden> Mon, 13 Jun 2022 21:44:26 +0100
Upload details
- Uploaded by:
- Debian Perl Group
- Uploaded to:
- Sid
- Original maintainer:
- Debian Perl Group
- Architectures:
- all
- Section:
- perl
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Mantic | release | universe | perl | |
Lunar | release | universe | perl | |
Kinetic | release | universe | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libexception-class-trycatch-perl_1.13-2.dsc | 2.2 KiB | f98e879c65f7d4d6bbe21adb649b7a9f1c03533a862d4882ead5dceb9a9a9eb1 |
libexception-class-trycatch-perl_1.13.orig.tar.gz | 20.1 KiB | 5e05770a09a52c7d3d9139e10a93757133f099b863d0823c8e4a021df7ffa502 |
libexception-class-trycatch-perl_1.13-2.debian.tar.xz | 2.9 KiB | 12a85b5058ca52bf908aeb8459cf7cdb1ccc1f428783a4708a8469140e2735c8 |
Available diffs
- diff from 1.13-1.1 to 1.13-2 (1.6 KiB)
No changes file available.
Binary packages built by this source
- libexception-class-trycatch-perl: syntactic try/catch sugar for use with Exception::Class
Exception:
:Class: :TryCatch provides syntactic sugar for use with
Exception::Class using the familiar keywords try and catch. Its
primary objective is to allow users to avoid dealing directly with $@ by
ensuring that any exceptions caught in an eval are captured as
Exception::Class objects, whether they were thrown objects to begin with or
whether the error resulted from die. This means that users may immediately
use isa and various Exception::Class methods to process the exception.
.
In addition, this module provides for a method to push errors onto a hidden
error stack immediately after an eval so that cleanup code or other error
handling may also call eval without the original error in $@ being lost.