Sha256: c74f69fa84b15fb6182b071f9f843d208b2dc2032b8cb8523863bad0af5fff04
Contents?: true
Size: 385 Bytes
Versions: 18
Compression:
Stored size: 385 Bytes
Contents
package Moose::Exception::CannotDelegateLocalMethodIsPresent; our $VERSION = '2.2203'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::Attribute', 'Moose::Exception::Role::Method'; sub _build_message { my $self = shift; "You cannot overwrite a locally defined method (".$self->method->name.") with a delegation"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
18 entries across 9 versions & 1 rubygems