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

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

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

sub _build_message {
    my $self               = shift;
    my $role_name          = $self->role_name;
    my $excluded_role_name = $self->excluded_role_name;
    return "Conflict detected: $role_name excludes role '$excluded_role_name'";
}

1;