The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Moose::Exception::NeitherAttributeNorAttributeNameIsGiven;
BEGIN {
  $Moose::Exception::NeitherAttributeNorAttributeNameIsGiven::AUTHORITY = 'cpan:STEVAN';
}
$Moose::Exception::NeitherAttributeNorAttributeNameIsGiven::VERSION = '2.1210';
use Moose;
extends 'Moose::Exception';

sub _build_message {
    "You need to give attribute or attribute_name or both";
}

1;