} else if ("Hello Exception".equals(s)) {
throw new CamelExchangeException("Forced for testing", exchange);
} else if ("Hello business".equals(s)) {
throw new MyBusinessException();
} else if ("I am not allowed to do this".equals(s)) {
throw new KeyManagementException();
} else if ("I am not allowed to access this".equals(s)) {
throw new IllegalAccessException();
}
exchange.getOut().setBody("Hello World");
}