Clean up various bits of code that broke when dzil processed them.
[gitmo/Moose.git] / lib / Moose / Error / Confess.pm
index bf42d98..eaf6120 100644 (file)
@@ -3,10 +3,6 @@ package Moose::Error::Confess;
 use strict;
 use warnings;
 
-our $VERSION   = '1.15';
-$VERSION = eval $VERSION;
-our $AUTHORITY = 'cpan:STEVAN';
-
 use base qw(Moose::Error::Default);
 
 sub new {
@@ -14,16 +10,14 @@ sub new {
     $self->create_error_confess(@args);
 }
 
-__PACKAGE__
+1;
+
+# ABSTRACT: Prefer C<confess>
 
 __END__
 
 =pod
 
-=head1 NAME
-
-Moose::Error::Confess - Prefer C<confess>
-
 =head1 SYNOPSIS
 
     # Metaclass definition must come before Moose is used.