use execption handler to handle process interrupt exception

This commit is contained in:
Sebastian Sdorra
2012-05-08 21:29:48 +02:00
parent 09c60730ce
commit 5ededccd10

View File

@@ -604,7 +604,7 @@ public class DefaultCGIExecutor extends AbstractCGIExecutor
} }
catch (InterruptedException ex) catch (InterruptedException ex)
{ {
logger.error("process interrupted", ex); getExceptionHandler().handleException(request, response, ex);
} }
} }