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

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

sub _build_message {
    my $self = shift;
    "Could not find an attribute by the name of '".$self->attribute_name."' to inherit from in ".$self->class_name;
}

1;