File Coverage

blib/lib/Moose/Exception/CannotDelegateWithoutIsa.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 6 100.0


line stmt bran cond sub pod time code
1             package Moose::Exception::CannotDelegateWithoutIsa;
2             our $VERSION = '2.2206';
3              
4 3     3   2212 use Moose;
  3         10  
  3         24  
5             extends 'Moose::Exception';
6             with 'Moose::Exception::Role::Attribute';
7              
8             sub _build_message {
9 6     6   158 "Cannot delegate methods based on a Regexp without a type constraint (isa)";
10             }
11              
12             __PACKAGE__->meta->make_immutable;
13             1;