Sha256: 13864b05d20160c5b55dab2073bab321d7d0602ba736449bc8160358dbc325f9
Contents?: true
Size: 458 Bytes
Versions: 38
Compression:
Stored size: 458 Bytes
Contents
package Moose::Exception::CannotOverrideALocalMethod; our $VERSION = '2.2207'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::Role'; has 'method_name' => ( is => 'ro', isa => 'Str', required => 1, ); sub _build_message { my $self = shift; "Cannot add an override of method '".$self->method_name."' because there is a local version of '".$self->method_name."'"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
38 entries across 26 versions & 1 rubygems