From: mark Date: Thu, 20 Jan 2011 01:24:36 +0000 (+0000) Subject: better error message X-Git-Tag: freeside_2_1_2~128 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=ee89293005890426307ab428a16e5c6132465bbe;p=freeside.git better error message --- diff --git a/FS/FS/bill_batch.pm b/FS/FS/bill_batch.pm index 136db0d9e..00aab7ed2 100644 --- a/FS/FS/bill_batch.pm +++ b/FS/FS/bill_batch.pm @@ -54,7 +54,10 @@ Typeset the entire batch as a PDF file. Returns the PDF as a string. sub print_pdf { eval 'use CAM::PDF'; - warn "Failed to load CAM::PDF: '$@'\n" if $@; + if ( $@ ) { + die "CAM::PDF not installed\n" if $@ =~ /^Can't locate/; + die "Failed to load CAM::PDF: '$@'\n"; + } my $self = shift; my $job = shift;