26 lines
422 B
Perl
26 lines
422 B
Perl
package Moose::Exception::CanOnlyWrapBlessedCode;
|
|
our $VERSION = '2.2207';
|
|
|
|
use Moose;
|
|
extends 'Moose::Exception';
|
|
with 'Moose::Exception::Role::ParamsHash';
|
|
|
|
has 'class' => (
|
|
is => 'ro',
|
|
isa => 'Str',
|
|
required => 1
|
|
);
|
|
|
|
has 'code' => (
|
|
is => 'ro',
|
|
isa => 'Any',
|
|
required => 1
|
|
);
|
|
|
|
sub _build_message {
|
|
"Can only wrap blessed CODE";
|
|
}
|
|
|
|
__PACKAGE__->meta->make_immutable;
|
|
1;
|