summaryrefslogtreecommitdiff
path: root/lib/Moose/Exception/OverloadRequiresAMetaMethod.pm
blob: 67ee8ee28c4280882b89f27fcc19c11031c1082f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package Moose::Exception::OverloadRequiresAMetaMethod;
our $VERSION = '2.1405';

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';
}

1;