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