blob: e39ef0fe9d5f8168e24170e26df74da291758fbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package Moose::Exception::MethodNameNotGiven;
our $VERSION = '2.1405';
use Moose;
extends 'Moose::Exception';
with 'Moose::Exception::Role::Class';
sub _build_message {
"You must define a method name to find";
}
1;
|