package Moose::Exception::NeedsTypeConstraintUnionForTypeCoercionUnion; BEGIN { $Moose::Exception::NeedsTypeConstraintUnionForTypeCoercionUnion::AUTHORITY = 'cpan:STEVAN'; } $Moose::Exception::NeedsTypeConstraintUnionForTypeCoercionUnion::VERSION = '2.1204'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::TypeConstraint'; 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; return "You can only create a Moose::Meta::TypeCoercion::Union for a " . "Moose::Meta::TypeConstraint::Union, not a $type_constraint" } 1;