blob: 40b359d1319bcbb6943af56f9799501f8e3e18a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package Moose::Exception::InstanceMustBeABlessedReference;
our $VERSION = '2.1405';
use Moose;
extends 'Moose::Exception';
with 'Moose::Exception::Role::ParamsHash', 'Moose::Exception::Role::Class';
has 'instance' => (
is => 'ro',
isa => 'Any',
required => 1
);
sub _build_message {
my $self = shift;
"The __INSTANCE__ parameter must be a blessed reference, not ". $self->instance;
}
1;
|