1package Moose::Exception::MustDefineAMethodName; 2our $VERSION = '2.2201'; 3 4use Moose; 5extends 'Moose::Exception'; 6with 'Moose::Exception::Role::Instance'; 7 8sub _build_message { 9 "You must define a method name"; 10} 11 12__PACKAGE__->meta->make_immutable; 131; 14