14 lines
326 B
Perl
14 lines
326 B
Perl
package Moose::Exception::OverloadRequiresAMetaMethod;
|
|
our $VERSION = '2.2207';
|
|
|
|
use Moose;
|
|
extends 'Moose::Exception';
|
|
|
|
sub _build_message {
|
|
my $self = shift;
|
|
'If you provide a method parameter to the Moose::Meta::Overload constructor it must be a Class::MOP::Method object';
|
|
}
|
|
|
|
__PACKAGE__->meta->make_immutable;
|
|
1;
|