summaryrefslogtreecommitdiff
path: root/lib/Moose/Exception/TriggerMustBeACodeRef.pm
blob: 3af0d3ff1870e4c0ac22469fed8e28adf7016747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Moose::Exception::TriggerMustBeACodeRef;
our $VERSION = '2.1405';

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

sub _build_message {
    my $self = shift;
    "Trigger must be a CODE ref on attribute (".$self->attribute_name.")";
}

1;