Sha256: c1d083f71b2d1535a59e93009e62619383a4274d690b112548bd686d4c7ed9b6
Contents?: true
Size: 379 Bytes
Versions: 14
Compression:
Stored size: 379 Bytes
Contents
package Moose::Exception::RequiredAttributeNeedsADefault; our $VERSION = '2.2206'; 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"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
14 entries across 7 versions & 1 rubygems