physicalActivator.prepareSystem(theCfg,theDataMgr);
physicalActivator.startSystem(theCfg,theDataMgr);
} catch (CannotPrepareSystemException e) {
logger.error(e.getLocalizedMessage());
throw new CannotIstantiatePhysicalActivatorException(e.getLocalizedMessage());
} catch (Exception e) {
logger.error("Unable to create an instance of " + sysName + "Activator. The message is \"" + e.getClass().getName() + ": " + e.getLocalizedMessage() + "\"");
throw new CannotIstantiatePhysicalActivatorException(sysName, e.getClass().getName() + ": " + e.getLocalizedMessage());
}
logger.info(sysName + " activated and started");
}