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

use Moose::Role;

has 'attribute' => (
    is        => 'ro',
    isa       => 'Class::MOP::Attribute',
    predicate => 'is_attribute_set'
);

1;