27 lines
516 B
Perl
27 lines
516 B
Perl
package Moose::Exception::WrapTakesACodeRefToBless;
|
|
our $VERSION = '2.2207';
|
|
|
|
use Moose;
|
|
extends 'Moose::Exception';
|
|
with 'Moose::Exception::Role::ParamsHash';
|
|
|
|
has 'code' => (
|
|
is => 'ro',
|
|
isa => 'Any',
|
|
required => 1
|
|
);
|
|
|
|
has 'class' => (
|
|
is => 'ro',
|
|
isa => 'Str',
|
|
required => 1
|
|
);
|
|
|
|
sub _build_message {
|
|
my $self = shift;
|
|
"You must supply a CODE reference to bless, not (" . ( $self->code ? $self->code : 'undef' ) . ")";
|
|
}
|
|
|
|
__PACKAGE__->meta->make_immutable;
|
|
1;
|