blob: e591a67893bb7b69eda766eecc9340ba2140f580 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package Moose::Exception::MethodExpectsFewerArgs;
our $VERSION = '2.1405';
use Moose;
extends 'Moose::Exception';
has 'method_name' => (
is => 'ro',
isa => 'Str',
required => 1,
);
has 'maximum_args' => (
is => 'ro',
isa => 'Int',
required => 1,
);
sub _build_message {
my $self = shift;
my $max = $self->maximum_args;
"Cannot call ".$self->method_name." with ".
( $max ? "more than $max" : 'any'). " argument".( $max == 1 ? '' : 's' );
}
1;
|