line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Moose::Exception::IncompatibleMetaclassOfSuperclass; |
2
|
|
|
|
|
|
|
our $VERSION = '2.2206'; |
3
|
|
|
|
|
|
|
|
4
|
3
|
|
|
3
|
|
2957
|
use Moose; |
|
3
|
|
|
|
|
12
|
|
|
3
|
|
|
|
|
19
|
|
5
|
|
|
|
|
|
|
extends 'Moose::Exception'; |
6
|
|
|
|
|
|
|
with 'Moose::Exception::Role::Class'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has [qw/superclass_name superclass_meta_type class_meta_type/] => ( |
9
|
|
|
|
|
|
|
is => 'ro', |
10
|
|
|
|
|
|
|
isa => 'Str', |
11
|
|
|
|
|
|
|
required => 1, |
12
|
|
|
|
|
|
|
); |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
sub _build_message { |
15
|
6
|
|
|
6
|
|
13
|
my $self = shift; |
16
|
6
|
|
|
|
|
215
|
my $class_name = $self->class_name; |
17
|
6
|
|
|
|
|
224
|
my $class_meta_type = $self->class_meta_type; |
18
|
6
|
|
|
|
|
211
|
my $superclass_name = $self->superclass_name; |
19
|
6
|
|
|
|
|
215
|
my $supermeta_type = $self->superclass_meta_type; |
20
|
|
|
|
|
|
|
|
21
|
6
|
|
|
|
|
166
|
return "The metaclass of $class_name ($class_meta_type)" . |
22
|
|
|
|
|
|
|
" is not compatible with the metaclass of its superclass, " . |
23
|
|
|
|
|
|
|
"$superclass_name ($supermeta_type)"; |
24
|
|
|
|
|
|
|
} |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
27
|
|
|
|
|
|
|
1; |