14 lines
269 B
Perl
14 lines
269 B
Perl
package Moose::Exception::MustDefineAnOverloadOperator;
|
|
our $VERSION = '2.2207';
|
|
|
|
use Moose;
|
|
extends 'Moose::Exception';
|
|
with 'Moose::Exception::Role::Instance';
|
|
|
|
sub _build_message {
|
|
"You must define an overload operator";
|
|
}
|
|
|
|
__PACKAGE__->meta->make_immutable;
|
|
1;
|