Sha256: c7a74b75b206d5c95bbc660fee47a71e979bb59a021590374dcf367dcca59da2
Contents?: true
Size: 437 Bytes
Versions: 14
Compression:
Stored size: 437 Bytes
Contents
package Moose::Exception::CouldNotFindTypeConstraintToCoerceFrom; our $VERSION = '2.2206'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::Instance'; has 'constraint_name' => ( is => 'ro', isa => 'Str', required => 1 ); sub _build_message { my $self = shift; "Could not find the type constraint (".$self->constraint_name.") to coerce from"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
14 entries across 7 versions & 1 rubygems