Files
GseTDDUebungKCLR/database/perl/vendor/lib/Moose/Exception/Role/Attribute.pm
Riley Schneider b732d8d4b5 Initial Commit
2025-12-03 16:38:10 +01:00

13 lines
216 B
Perl

package Moose::Exception::Role::Attribute;
our $VERSION = '2.2014';
use Moose::Role;
has 'attribute' => (
is => 'ro',
isa => 'Class::MOP::Attribute',
predicate => 'is_attribute_set'
);
1;