summaryrefslogtreecommitdiff
path: root/lib/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm
blob: d266888367da839c2f491e8c6cd858c512bbaf33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package Moose::Exception::CreateMOPClassTakesArrayRefOfAttributes;
our $VERSION = '2.1405';

use Moose;
extends 'Moose::Exception';
with 'Moose::Exception::Role::RoleForCreateMOPClass';

sub _build_message {
    "You must pass an ARRAY ref of attributes";
}

1;