this only matters for lazy attributes with initializers
[gitmo/Moose.git] / lib / Moose / Error / Croak.pm
index 8ef2aa3..0c8b04c 100644 (file)
@@ -3,10 +3,6 @@ package Moose::Error::Croak;
 use strict;
 use warnings;
 
-our $VERSION   = '0.98';
-$VERSION = eval $VERSION;
-our $AUTHORITY = 'cpan:STEVAN';
-
 use base qw(Moose::Error::Default);
 
 sub new {
@@ -14,16 +10,14 @@ sub new {
     $self->create_error_croak(@args);
 }
 
-__PACKAGE__
+1;
+
+# ABSTRACT: Prefer C<croak>
 
 __END__
 
 =pod
 
-=head1 NAME
-
-Moose::Error::Croak - Prefer C<croak>
-
 =head1 SYNOPSIS
 
     # Metaclass definition must come before Moose is used.