Sha256: 8e135d80eae72a5b2f8d9dba6d5faa057810dbb9e1f111d25e4eb36232aa1893
Contents?: true
Size: 385 Bytes
Versions: 38
Compression:
Stored size: 385 Bytes
Contents
package Moose::Exception::CannotDelegateLocalMethodIsPresent; our $VERSION = '2.2207'; 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
38 entries across 26 versions & 1 rubygems