Sha256: 3b2cfe1aa533e5232b18af4a174dfb8050e08fad66cf363532f228efbc5ec3c0
Contents?: true
Size: 439 Bytes
Versions: 14
Compression:
Stored size: 439 Bytes
Contents
package Moose::Exception::BuilderMethodNotSupportedForAttribute; our $VERSION = '2.2206'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::Attribute', 'Moose::Exception::Role::Instance'; sub _build_message { my $self = shift; blessed($self->instance)." does not support builder method '". $self->attribute->builder ."' for attribute '" . $self->attribute->name . "'"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
14 entries across 7 versions & 1 rubygems