X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FError%2FConfess.pm;h=eaf6120ff3d38802b075b6e03c67ff80cd27ba39;hb=f01746fa11e40620bb7a7da3e4180a9f24a2c937;hp=72ad170ecaa09c30eddb29de783dddae9b2f1540;hpb=8b5074ce1a5038824f1e1177cd00d1bcfec5a9fb;p=gitmo%2FMoose.git diff --git a/lib/Moose/Error/Confess.pm b/lib/Moose/Error/Confess.pm index 72ad170..eaf6120 100644 --- a/lib/Moose/Error/Confess.pm +++ b/lib/Moose/Error/Confess.pm @@ -3,21 +3,20 @@ package Moose::Error::Confess; use strict; use warnings; -our $VERSION = '0.97'; -$VERSION = eval $VERSION; -our $AUTHORITY = 'cpan:STEVAN'; - use base qw(Moose::Error::Default); -__PACKAGE__ +sub new { + my ( $self, @args ) = @_; + $self->create_error_confess(@args); +} -__END__ +1; -=pod +# ABSTRACT: Prefer C -=head1 NAME +__END__ -Moose::Error::Confess - Prefer C +=pod =head1 SYNOPSIS