package Moose::Exception::CannotOverrideNoSuperMethod; BEGIN { $Moose::Exception::CannotOverrideNoSuperMethod::AUTHORITY = 'cpan:STEVAN'; } $Moose::Exception::CannotOverrideNoSuperMethod::VERSION = '2.1204'; 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"; } 1;