* @param _requestImpl The reactor with the hung request.
* @param _exception The runtime exception
*/
public void onRuntimeException(final RequestMtImpl<?> _requestImpl,
final RuntimeException _exception) {
final ReactorImpl reactor = _requestImpl.getTargetReactorImpl();
reactor.error("runtime exception -> reactor close", _exception);
try {
reactor.fail("runtime exception");
} catch (final Exception e) {
}
}