This commit is contained in:
13
CPAN/Moose/Exception/CannotDelegateWithoutIsa.pm
Normal file
13
CPAN/Moose/Exception/CannotDelegateWithoutIsa.pm
Normal file
@@ -0,0 +1,13 @@
|
||||
package Moose::Exception::CannotDelegateWithoutIsa;
|
||||
our $VERSION = '2.2207';
|
||||
|
||||
use Moose;
|
||||
extends 'Moose::Exception';
|
||||
with 'Moose::Exception::Role::Attribute';
|
||||
|
||||
sub _build_message {
|
||||
"Cannot delegate methods based on a Regexp without a type constraint (isa)";
|
||||
}
|
||||
|
||||
__PACKAGE__->meta->make_immutable;
|
||||
1;
|
||||
Reference in New Issue
Block a user