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;