Sha256: 94833be96b25f2645dcd15f9c5a451cc12ff0360e8dd4bf68d1042f070f57081
Contents?: true
Size: 437 Bytes
Versions: 33
Compression:
Stored size: 437 Bytes
Contents
package Moose::Exception::CouldNotFindTypeConstraintToCoerceFrom; our $VERSION = '2.2207'; 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
33 entries across 21 versions & 1 rubygems