blib/lib/Moose/Exception/CanExtendOnlyClasses.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 6 | 6 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 2 | 100.0 |
pod | n/a | ||
total | 8 | 8 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Moose::Exception::CanExtendOnlyClasses; | ||||||
2 | our $VERSION = '2.2203'; | ||||||
3 | |||||||
4 | 2 | 2 | 987 | use Moose; | |||
2 | 5 | ||||||
2 | 13 | ||||||
5 | extends 'Moose::Exception'; | ||||||
6 | with 'Moose::Exception::Role::Role'; | ||||||
7 | |||||||
8 | sub _build_message { | ||||||
9 | 2 | 2 | 4 | my $self = shift; | |||
10 | 2 | 55 | my $role_name = $self->role_name; | ||||
11 | 2 | 43 | return "You cannot inherit from a Moose Role ($role_name)"; | ||||
12 | } | ||||||
13 | |||||||
14 | __PACKAGE__->meta->make_immutable; | ||||||
15 | 1; |