X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FError%2FConfess.pm;h=eaf6120ff3d38802b075b6e03c67ff80cd27ba39;hb=9c1bf11e2960c376afb5edfb2615d6de21dc379b;hp=2619af2d25f9c3c316f8851015a2f1fc95deed8c;hpb=6e56c6e09ab419776522759fc65fb0e85af66538;p=gitmo%2FMoose.git diff --git a/lib/Moose/Error/Confess.pm b/lib/Moose/Error/Confess.pm index 2619af2..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.89_02'; -$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