Fix typo in my own name
[gitmo/Moose.git] / lib / Moose / Error / Confess.pm
CommitLineData
bf6fa6b3 1package Moose::Error::Confess;
2
c0e91e5f 3use strict;
4use warnings;
5
bf6fa6b3 6use base qw(Moose::Error::Default);
7
8__PACKAGE__
9
10__END__
11
12=pod
13
14=head1 NAME
15
16Moose::Error::Confess - Prefer C<confess>
17
18=head1 SYNOPSIS
19
20 use metaclass => (
21 metaclass => "Moose::Meta::Class",
22 error_class => "Moose::Error::Confess",
23 );
24
25=head1 DESCRIPTION
26
27This error class uses L<Carp/confess> to raise errors generated in your
28metaclass.
29
30=cut
31
32
33