Sha256: 5ff41417fce20302a39e54e2a388b19551ee18c7cfc1b0464ccd8b68d57dbf2b
Contents?: true
Size: 344 Bytes
Versions: 14
Compression:
Stored size: 344 Bytes
Contents
package Moose::Exception::AccessorMustReadWrite; our $VERSION = '2.2206'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::InvalidAttributeOptions'; sub _build_message { my $self = shift; "Cannot define an accessor name on a read-only attribute, accessors are read/write"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
14 entries across 7 versions & 1 rubygems