Sha256: 14b291576ef253dc4649e634d15874a5ab4ac1a6b1946436df246010e08182de
Contents?: true
Size: 407 Bytes
Versions: 38
Compression:
Stored size: 407 Bytes
Contents
package Moose::Exception::CoercionAlreadyExists; 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; "A coercion action already exists for '".$self->constraint_name."'"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
38 entries across 26 versions & 1 rubygems