blob: 9a754ac59d1a3391c02b3855a0a7b14bd9287fcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package Moose::Exception::Role::InvalidAttributeOptions;
our $VERSION = '2.1405';
use Moose::Role;
with 'Moose::Exception::Role::ParamsHash';
has 'attribute_name' => (
is => 'ro',
isa => 'Str',
required => 1,
);
1;
|