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