package Moose::Error::Croak; BEGIN { $Moose::Error::Croak::AUTHORITY = 'cpan:STEVAN'; } { $Moose::Error::Croak::VERSION = '2.1005'; } use strict; use warnings; use base qw(Moose::Error::Default); sub new { my ( $self, @args ) = @_; $self->create_error_croak(@args); } sub _inline_new { my ( $self, %args ) = @_; my $depth = ($args{depth} || 0) - 1; return 'Moose::Error::Util::create_error_croak(' . 'message => ' . $args{message} . ', ' . 'depth => ' . $depth . ', ' . ')'; } 1; # ABSTRACT: Prefer C __END__ =pod =head1 NAME Moose::Error::Croak - Prefer C =head1 VERSION version 2.1005 =head1 SYNOPSIS # Metaclass definition must come before Moose is used. use metaclass ( metaclass => 'Moose::Meta::Class', error_class => 'Moose::Error::Croak', ); use Moose; # ... =head1 DESCRIPTION This error class uses L to raise errors generated in your metaclass. =head1 METHODS =over 4 =item new Overrides L to prefer C. =back =head1 AUTHOR Moose is maintained by the Moose Cabal, along with the help of many contributors. See L and L for details. =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2013 by Infinity Interactive, Inc.. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut