Printing error message happened while finding VM

This commit is contained in:
Subrahmanyam Mandavilli 2015-12-24 19:56:34 +05:30
Родитель 5d7ffd510f
Коммит f2b87f3483
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -64,6 +64,7 @@ public class VMWareImpl implements IVMWare {
try {
vmMor = getVMMorByName(vmName);
} catch (Exception exp) {
System.out.println(exp.getMessage() != null ? exp.getMessage() : "Unknown error occured");
failedVmList += vmName + " ";
continue;
}