while (iterator.hasPrevious()) {
Interceptor currentInterceptor = iterator.previous();
if (LOG.isDebugEnabled()) {
LOG.debug("Invoking handleFault on interceptor " + currentInterceptor.getId());
}
currentInterceptor.handleFault(message);
}
throw ex;
}
}