From ee89293005890426307ab428a16e5c6132465bbe Mon Sep 17 00:00:00 2001 From: mark Date: Thu, 20 Jan 2011 01:24:36 +0000 Subject: better error message --- FS/FS/bill_batch.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; -- cgit v1.2.1