in reply to Re^2: Forcing stack trace?in thread Forcing stack trace?
use Carp; $SIG{ __DIE__ } = sub { Carp::confess( @_ ) }; [download]
See perlvar for more info on %SIG.