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

use Moose::Role;

has 'attribute_name' => (
    is       => 'ro',
    isa      => 'Str',
    required => 1
);

1;