blob: c482bea2bd5c1592eaf76a60374b0c7e6f420563 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package Moose::Exception::NeitherAttributeNorAttributeNameIsGiven;
our $VERSION = '2.1405';
use Moose;
extends 'Moose::Exception';
sub _build_message {
"You need to give attribute or attribute_name or both";
}
1;
|