blob: d823852c842526c353d1d8aba59a11c388e7f46d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package Moose::Exception::RequiredAttributeNeedsADefault;
our $VERSION = '2.1405';
use Moose;
extends 'Moose::Exception';
with 'Moose::Exception::Role::InvalidAttributeOptions';
sub _build_message {
my $self = shift;
"You cannot have a required attribute (".$self->attribute_name.") without a default, builder, or an init_arg";
}
1;
|