1package Moose::Exception::NeitherAttributeNorAttributeNameIsGiven; 2our $VERSION = '2.2201'; 3 4use Moose; 5extends 'Moose::Exception'; 6 7sub _build_message { 8 "You need to give attribute or attribute_name or both"; 9} 10 11__PACKAGE__->meta->make_immutable; 121; 13