fixed typo in error message

This commit is contained in:
Mark Fisher
2010-09-22 10:42:28 -04:00
parent dee91f6871
commit 3c5917dad6

View File

@@ -251,9 +251,9 @@ public class ChannelPublishingJmsMessageListener extends MessagingGatewaySupport
}
} catch (RuntimeException e) {
//e.printStackTrace();
logger.error("Problems generating JMS Reply Message from<EFBFBD>the: " + replyResult + "\n" +
" Typical couses is that Object from which the JMS Message is created or some members of its " +
"hierarchy are not Serializable", e);
logger.error("Failed to generate JMS Reply Message from: " + replyResult + "\n" +
"A typical cause is that the Object from which the JMS Message is created or some member of its " +
"hierarchy is not Serializable.", e);
throw e;
}
}