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

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

sub _build_message {
    "Cannot add an override method if a local method is already present";
}

1;