Sha256: 286f5855d9f8aca22867190600f6357a35b7d8d3c1a5025b3858b9fcf3a3650e
Contents?: true
Size: 437 Bytes
Versions: 18
Compression:
Stored size: 437 Bytes
Contents
package Moose::Exception::CouldNotFindTypeConstraintToCoerceFrom; our $VERSION = '2.2203'; 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
18 entries across 9 versions & 1 rubygems