Sha256: 5f9fea15407573ca7686ce9aaf07316ad5bf003740634a5e975e38b1dba1ded8
Contents?: true
Size: 479 Bytes
Versions: 33
Compression:
Stored size: 479 Bytes
Contents
package Moose::Exception::CannotCoerceAttributeWhichHasNoCoercion; our $VERSION = '2.2207'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::InvalidAttributeOptions', 'Moose::Exception::Role::TypeConstraint'; sub _build_message { my $self = shift; my $name = $self->attribute_name; my $type = $self->type_name; return "You cannot coerce an attribute ($name) unless its type ($type) has a coercion"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
33 entries across 21 versions & 1 rubygems