final DeploymentExceptionManager dem = SystemInstance.get().getComponent(DeploymentExceptionManager.class);
if (dem.hasDeploymentFailed()) {
final Exception tre = dem.getLastException();
// we don't need this exception anymore
dem.clearLastException(info);
throw tre;
}
return info;
} catch (Exception e) {