bump version to 0.87
[gitmo/Moose.git] / lib / Moose / Error / Confess.pm
CommitLineData
bf6fa6b3 1package Moose::Error::Confess;
2
c0e91e5f 3use strict;
4use warnings;
5
92d82041 6our $VERSION = '0.87';
ae18d5ec 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
bf6fa6b3 10use base qw(Moose::Error::Default);
11
12__PACKAGE__
13
14__END__
15
16=pod
17
18=head1 NAME
19
20Moose::Error::Confess - Prefer C<confess>
21
22=head1 SYNOPSIS
23
24 use metaclass => (
25 metaclass => "Moose::Meta::Class",
26 error_class => "Moose::Error::Confess",
27 );
28
29=head1 DESCRIPTION
30
31This error class uses L<Carp/confess> to raise errors generated in your
32metaclass.
33
34=cut
35
36
37