Sha256: 67807a4a19741f0171c7ab4e847f11eceeecd4b489f1ebf68d916ab7f8a40d89
Contents?: true
Size: 657 Bytes
Versions: 14
Compression:
Stored size: 657 Bytes
Contents
package Moose::Exception::NeedsTypeConstraintUnionForTypeCoercionUnion; our $VERSION = '2.2206'; 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
14 entries across 7 versions & 1 rubygems