summaryrefslogtreecommitdiff
path: root/lib/Moose/Exception/MustSupplyADelegateToMethod.pm
blob: f86f8d2eb2f7ce5104d31ae3786ed56c8dddca83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package Moose::Exception::MustSupplyADelegateToMethod;
our $VERSION = '2.1405';

use Moose;
extends 'Moose::Exception';
with 'Moose::Exception::Role::ParamsHash';

has 'class' => (
    is       => 'ro',
    isa      => 'Str',
    required => 1
);

sub _build_message {
    "You must supply a delegate_to_method which is a method name or a CODE reference";
}

1;