* @throws SalsaDeviceException
*/
public void loadScan(IConfigK config, IContext context) throws SalsaDeviceException {
String scanServerName = context.getScanServerName();
if (TangoDeviceHelper.isDeviceRunning(scanServerName)) {
scanConnectorToolK = new ScanConnectorToolK(scanServerName);
} else {
String errorMessage = "Cannot load scan configK " + config.getFullPath() + " because " + scanServerName
+ " device is down";
LOGGER.error(errorMessage);
throw new SalsaDeviceException(errorMessage);