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