14 lines
261 B
Perl
14 lines
261 B
Perl
package Moose::Exception::MethodModifierNeedsMethodName;
|
|
our $VERSION = '2.2207';
|
|
|
|
use Moose;
|
|
extends 'Moose::Exception';
|
|
with 'Moose::Exception::Role::Class';
|
|
|
|
sub _build_message {
|
|
"You must pass in a method name";
|
|
}
|
|
|
|
__PACKAGE__->meta->make_immutable;
|
|
1;
|