NettyHttpRequesterResponseHandler.this.scmpCallback.receive(ret);
} catch (Throwable th) {
LOGGER.error("receive message", th);
if ((th instanceof Exception) == true) {
try {
SCCallbackException ex = new SCCallbackException("exception raised in callback", th);
NettyHttpRequesterResponseHandler.this.scmpCallback.receive(ex);
} catch (Throwable th1) {
LOGGER.error("receive exception", th1);
}
}