correct wordings

This commit is contained in:
kimchy 2010-05-17 00:08:11 +03:00
parent 918e2a6882
commit a8b9b01f3d
2 changed files with 4 additions and 4 deletions

View File

@ -235,7 +235,7 @@ public class LocalTransport extends AbstractLifecycleComponent<Transport> implem
try { try {
handler.handleResponse(streamable); handler.handleResponse(streamable);
} catch (Exception e) { } catch (Exception e) {
handleException(handler, new ResponseHandlerFailureTransportException("Failed to handler response", e)); handleException(handler, new ResponseHandlerFailureTransportException("Failed to handle response", e));
} }
} }
}); });
@ -244,7 +244,7 @@ public class LocalTransport extends AbstractLifecycleComponent<Transport> implem
//noinspection unchecked //noinspection unchecked
handler.handleResponse(streamable); handler.handleResponse(streamable);
} catch (Exception e) { } catch (Exception e) {
handleException(handler, new ResponseHandlerFailureTransportException("Failed to handler response", e)); handleException(handler, new ResponseHandlerFailureTransportException("Failed to handle response", e));
} }
} }
} }

View File

@ -112,7 +112,7 @@ public class MessageChannelHandler extends SimpleChannelUpstreamHandler {
try { try {
handler.handleResponse(streamable); handler.handleResponse(streamable);
} catch (Exception e) { } catch (Exception e) {
handleException(handler, new ResponseHandlerFailureTransportException("Failed to handler response", e)); handleException(handler, new ResponseHandlerFailureTransportException("Failed to handle response", e));
} }
} }
}); });
@ -121,7 +121,7 @@ public class MessageChannelHandler extends SimpleChannelUpstreamHandler {
//noinspection unchecked //noinspection unchecked
handler.handleResponse(streamable); handler.handleResponse(streamable);
} catch (Exception e) { } catch (Exception e) {
handleException(handler, new ResponseHandlerFailureTransportException("Failed to handler response", e)); handleException(handler, new ResponseHandlerFailureTransportException("Failed to handle response", e));
} }
} }
} }