croak instead of die
Alexander Hartmaier [Thu, 10 Jun 2010 13:40:35 +0000 (15:40 +0200)]
lib/DBIx/Class/SQLAHacks.pm

index b5c7d33..c3a3f0d 100644 (file)
@@ -815,7 +815,7 @@ sub _join_condition {
   } elsif (ref $cond eq 'ARRAY') {
     return join(' OR ', map { $self->_join_condition($_) } @$cond);
   } else {
-    die "Can't handle this yet!";
+    croak "Can't handle this yet!";
   }
 }