14 lines
289 B
Perl
14 lines
289 B
Perl
package Moose::Exception::CreateMOPClassTakesHashRefOfMethods;
|
|
our $VERSION = '2.2207';
|
|
|
|
use Moose;
|
|
extends 'Moose::Exception';
|
|
with 'Moose::Exception::Role::RoleForCreateMOPClass';
|
|
|
|
sub _build_message {
|
|
"You must pass an HASH ref of methods";
|
|
}
|
|
|
|
__PACKAGE__->meta->make_immutable;
|
|
1;
|