
Zhris
Enthusiast
Apr 5, 2012, 2:01 PM
Views: 65314
|
Re: [jamesa00789] ModPerl::Util::exit: (120000) exit was called
|
|
|
Hi, I can't be certain but could be where you have called exit within an eval block. In this case, you could check if $@ matches the "ModPerl::Util::exit" error, then handle appropriately:
eval { Exit(); }; if ($@) { if ($@ =~ m/ModPerl::Util::exit/) { exit; } else { die "Another error occurred: $@\n"; } } Chris
(This post was edited by Zhris on Jun 15, 2012, 2:41 PM)
|