Sha256: 0b604710ec56bcc6226e52d2c6940962638dcd76a810ac566dcdd00f0584f21d
Contents?: true
Size: 377 Bytes
Versions: 33
Compression:
Stored size: 377 Bytes
Contents
package Moose::Exception::LazyAttributeNeedsADefault; our $VERSION = '2.2207'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::EitherAttributeOrAttributeName'; sub _build_message { my $self = shift; "You cannot have a lazy attribute (".$self->attribute_name.") without specifying a default value for it"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
33 entries across 21 versions & 1 rubygems