Sha256: d3fa94df8271fb494a114ee7b226806a380e11b131f9230d45d4b788e76d60ff
Contents?: true
Size: 389 Bytes
Versions: 33
Compression:
Stored size: 389 Bytes
Contents
package Moose::Exception::MustSupplyAMetaclass; our $VERSION = '2.2207'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::ParamsHash'; has 'class' => ( is => 'ro', isa => 'Str', required => 1 ); sub _build_message { my $self = shift; "You must pass a metaclass instance if you want to inline"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
33 entries across 21 versions & 1 rubygems