Sha256: aa2edb36cd038587674138b1bcba446e3e6d2059446f88b10b89c17ff5e69c47
Contents?: true
Size: 455 Bytes
Versions: 14
Compression:
Stored size: 455 Bytes
Contents
package Moose::Exception::MethodNameNotFoundInInheritanceHierarchy; our $VERSION = '2.2206'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::Class'; has 'method_name' => ( is => 'ro', isa => 'Str', required => 1 ); sub _build_message { my $self = shift; "The method '".$self->method_name."' was not found in the inheritance hierarchy for ".$self->class_name; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
14 entries across 7 versions & 1 rubygems