Sha256: 49fc5d200c0a2efc3219dbb2544b663ee03cfc3c31d12f61c1ba09902930076a
Contents?: true
Size: 657 Bytes
Versions: 33
Compression:
Stored size: 657 Bytes
Contents
package Moose::Exception::NeedsTypeConstraintUnionForTypeCoercionUnion; our $VERSION = '2.2207'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::TypeConstraint'; # use Moose::Util::TypeConstraints 'find_type_constraint'; has 'type_coercion_union_object' => ( is => 'ro', isa => 'Moose::Meta::TypeCoercion::Union', required => 1 ); sub _build_message { my $self = shift; my $type_constraint = $self->type_name; return "You can only create a Moose::Meta::TypeCoercion::Union for a " . "Moose::Meta::TypeConstraint::Union, not a $type_constraint" } __PACKAGE__->meta->make_immutable; 1;
Version data entries
33 entries across 21 versions & 1 rubygems