From: ivan Date: Fri, 14 Sep 2001 18:05:16 +0000 (+0000) Subject: s/croak/confess/ X-Git-Tag: freeside_1_4_0pre11~331 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=9801653f4368761e7110c9c80cc37e7f1004302f;p=freeside.git s/croak/confess/ --- diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm index b476df2c0..578904ed3 100644 --- a/FS/FS/Record.pm +++ b/FS/FS/Record.pm @@ -899,7 +899,7 @@ sub fields { } #croak "Usage: \@fields = fields(\$table)\n or: \@fields = \$record->fields" unless $table; my($table_obj) = $dbdef->table($table); - croak "Unknown table $table" unless $table_obj; + confess "Unknown table $table" unless $table_obj; $table_obj->columns; } @@ -993,7 +993,7 @@ sub DESTROY { return; } =head1 VERSION -$Id: Record.pm,v 1.27 2001-09-11 00:08:18 ivan Exp $ +$Id: Record.pm,v 1.28 2001-09-14 18:05:16 ivan Exp $ =head1 BUGS