* Returns the in message or throws an exception if there is no in message.
*/
protected NormalizedMessage getInMessage(MessageExchange exchange) throws NoInMessageAvailableException {
NormalizedMessage message = exchange.getMessage("in");
if (message == null) {
throw new NoInMessageAvailableException(exchange);
}
return message;
}