if (requestContext.isSimulation()) {
return null;
}
// We will be concatenating the incoming exception's message so that it will
// be carried forward, and displayed at the client-side.
throw new RegistryException(
"An exception occurred while executing handler chain. " +
e.getMessage(), e);
}
if (isProcessingComplete(requestContext)) {
break;