oops, that used confess
Daisuke Maki [Sat, 7 Mar 2009 09:44:01 +0000 (09:44 +0000)]
lib/Mouse/Meta/Attribute.pm

index 42b1d39..20e8006 100644 (file)
@@ -257,7 +257,7 @@ sub create {
         if exists $args{coerce};
 
     if (exists $args{isa}) {
-        warn "Got isa => $args{isa}, but Mouse does not yet support parameterized types for containers other than ArrayRef and HashRef (rt.cpan.org #39795)"
+        confess "Got isa => $args{isa}, but Mouse does not yet support parameterized types for containers other than ArrayRef and HashRef (rt.cpan.org #39795)"
             if $args{isa} =~ /^([^\[]+)\[.+\]$/ &&
                $1 ne 'ArrayRef' &&
                $1 ne 'HashRef';