blob: 2d818f78c5e10e5ad167bfa099b20915c55ce817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package Moose::Exception::MustDefineAnAttributeName;
our $VERSION = '2.1405';
use Moose;
extends 'Moose::Exception';
with 'Moose::Exception::Role::Class';
sub _build_message {
"You must define an attribute name";
}
1;
|