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