package Moose::Exception::CreateTakesHashRefOfMethods; BEGIN { $Moose::Exception::CreateTakesHashRefOfMethods::AUTHORITY = 'cpan:STEVAN'; } $Moose::Exception::CreateTakesHashRefOfMethods::VERSION = '2.1204'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::RoleForCreate'; sub _build_message { "You must pass a HASH ref of methods"; } 1;