Sha256: b3bf86cc90fd96c75c28c81bd0e356626465d30b4458dabbe920d763619b493f
Contents?: true
Size: 505 Bytes
Versions: 38
Compression:
Stored size: 505 Bytes
Contents
package Moose::Exception::CannotOverrideNoSuperMethod; our $VERSION = '2.2207'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::ParamsHash'; has 'method_name' => ( is => 'ro', isa => 'Str', required => 1 ); has 'class' => ( is => 'ro', isa => 'Str', required => 1 ); sub _build_message { my $self = shift; "You cannot override '".$self->method_name."' because it has no super method"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
38 entries across 26 versions & 1 rubygems