croak instead of die
[dbsrgits/DBIx-Class.git] / 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!";
   }
 }