blob: 91f366ce294da83a4e3f8c33bd7527f970d65895 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package Moose::Exception::RolesDoNotSupportAugment;
our $VERSION = '2.1405';
use Moose;
extends 'Moose::Exception';
sub _build_message {
"Roles cannot support 'augment'";
}
1;
|