~ubuntu-branches/ubuntu/vivid/libcontextual-return-perl/vivid

« back to all changes in this revision

Viewing changes to lib/Contextual/Return/Failure.pm

  • Committer: Package Import Robot
  • Author(s): Salvatore Bonaccorso, Fabrizio Regalli, gregor herrmann, Ansgar Burchardt, Salvatore Bonaccorso
  • Date: 2012-01-19 20:27:39 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120119202739-ug34d6shq77s0ooc
Tags: 0.003002-1
[ Fabrizio Regalli ]
* Bump to 3.9.2 Standard-Version.
* Add myself to Uploaders and Copyright.
* Build-Depends: switch to debhelper (>= 8).
* Fixed lintian copyright-refers-to-symlink-license message.
* Removed no more needed source.lintian-overrides file.

[ gregor herrmann ]
* Remove alternative (build) dependencies that are already satisfied
  in oldstable.

[ Ansgar Burchardt ]
* debian/control: Convert Vcs-* fields to Git.

[ Salvatore Bonaccorso ]
* Email change: Salvatore Bonaccorso -> carnil@debian.org
* debian/copyright: Replace DEP5 Format-Specification URL from
  svn.debian.org to anonscm.debian.org URL.
* Imported Upstream version 0.003002
* Refresh debian/copyright file.
  Update copyright years for upstream files and for debian/* packaging
  files.
  Refer to Debian systems in general instead of only Debian GNU/Linux
  systems.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package Contextual::Return::Failure;
2
 
#use version; $VERSION = qv('0.0.2');
 
2
our $VERSION = 0.000_003;
3
3
 
4
4
use Contextual::Return;
5
5
BEGIN { *_in_context = *Contextual::Return::_in_context }
110
110
                die _in_context $exception, "Attempted to use failure value"
111
111
            }
112
112
        }
 
113
        METHOD {
 
114
            error => sub { _in_context $exception }
 
115
        }
113
116
}
114
117
 
115
118
1;