Sha256: 58ac4d86f8f1ec6cfbe2a10807ad0e386f922ac117fc9d1431c15a0f3c9439aa
Contents?: true
Size: 365 Bytes
Versions: 14
Compression:
Stored size: 365 Bytes
Contents
package Moose::Exception::MOPAttributeNewNeedsAttributeName; our $VERSION = '2.2206'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::ParamsHash'; has 'class' => ( is => 'ro', isa => 'Str', required => 1 ); sub _build_message { "You must provide a name for the attribute"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
14 entries across 7 versions & 1 rubygems