1package Moose::Exception::CannotOverrideLocalMethodIsPresent;
2our $VERSION = '2.2201';
3
4use Moose;
5extends 'Moose::Exception';
6with 'Moose::Exception::Role::Class', 'Moose::Exception::Role::Method';
7
8sub _build_message {
9    "Cannot add an override method if a local method is already present";
10}
11
12__PACKAGE__->meta->make_immutable;
131;
14