logger.fine("Read: " + message); //$NON-NLS-1$
} catch (Exception e) {
if (e instanceof USIException)
throw (USIException) e;
throw new USIException(
MessageHandler.class, "handleResponse.error.readMessage", e); //$NON-NLS-1$
}
if (!message.isAcknowledge()) {
throw new USIException(
MessageHandler.class, "handleResponse.error.reject"); //$NON-NLS-1$
}
return message;
}