From: Andy Grundman Date: Fri, 18 May 2007 05:15:56 +0000 (+0000) Subject: Improve the error when we can't load the FCGI module X-Git-Tag: 5.7099_04~184 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=500a16796a666045b3961eef7ceb3a2ed4ec0ca7;p=catagits%2FCatalyst-Runtime.git Improve the error when we can't load the FCGI module --- diff --git a/lib/Catalyst/Engine/FastCGI.pm b/lib/Catalyst/Engine/FastCGI.pm index 666ecf0..8058a2d 100644 --- a/lib/Catalyst/Engine/FastCGI.pm +++ b/lib/Catalyst/Engine/FastCGI.pm @@ -3,7 +3,7 @@ package Catalyst::Engine::FastCGI; use strict; use base 'Catalyst::Engine::CGI'; eval "use FCGI"; -die "Please install FCGI\n" if $@; +die "Unable to load the FCGI module, you may need to install it:\n$@\n" if $@; =head1 NAME