Sha256: 99cf5c9e011e03a896f58cec818fd3d6c56a39dc6ce97bf359642c09f943d122
Contents?: true
Size: 455 Bytes
Versions: 36
Compression:
Stored size: 455 Bytes
Contents
package Moose::Exception::MethodNameNotFoundInInheritanceHierarchy; our $VERSION = '2.2207'; 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
36 entries across 24 versions & 1 rubygems