Sha256: 3b1945e7b87c12787bdc26feac5759e787433a0ff8b12f1d5d998a5309e9df32
Contents?: true
Size: 389 Bytes
Versions: 14
Compression:
Stored size: 389 Bytes
Contents
package Moose::Exception::MustSupplyAMetaclass; 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 { my $self = shift; "You must pass a metaclass instance if you want to inline"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
14 entries across 7 versions & 1 rubygems