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