Lines Matching refs:MyError

44 struct MyError
46 MyError(HRESULT rc,
75 * Throws MyError on errors.
93 if (FAILED(rc)) throw MyError(rc, "failed to create appliance\n");
97 if (FAILED(rc)) throw MyError(rc, "Appliance::Read() failed\n");
99 if (FAILED(rc)) throw MyError(rc, "Progress::WaitForCompletion() failed\n");
102 if (FAILED(rc2)) throw MyError(rc2, "Appliance::Read() failed\n", pProgress);
106 if (FAILED(rc)) throw MyError(rc, "Appliance::Interpret() failed\n");
126 if (FAILED(rc)) throw MyError(rc, "VirtualSystemDescription::GetDescription() failed\n");
222 throw MyError(E_UNEXPECTED, "Invalid VirtualSystemDescriptionType\n");
237 if (FAILED(rc)) throw MyError(rc, "Appliance::ImportMachines() failed\n");
239 if (FAILED(rc)) throw MyError(rc, "Progress::WaitForCompletion() failed\n");
241 if (FAILED(rc2)) throw MyError(rc2, "Appliance::ImportMachines() failed\n", pProgress);
245 if (FAILED(rc)) throw MyError(rc, "Appliance::GetMachines() failed\n");
278 if (RT_FAILURE(vrc)) throw MyError(0, Utf8StrFmt("Cannot copy ovf-dummy.vmdk to %s: %Rra\n", pcszDest, vrc).c_str());
304 if (FAILED(rc)) throw MyError(rc, "failed to initialize COM!\n");
310 if (FAILED(rc)) throw MyError(rc, "failed to create the VirtualBox object!\n");
313 if (FAILED(rc)) throw MyError(rc, "failed to create a session object!\n");
335 catch (MyError &e)
353 if (FAILED(rc)) throw MyError(rc, "VirtualBox::FindMachine() failed\n");
359 if (FAILED(rc)) throw MyError(rc, "Machine::Unregister() failed\n");
363 if (FAILED(rc)) throw MyError(rc, "Machine::DeleteSettings() failed\n");
365 if (FAILED(rc)) throw MyError(rc, "Progress::WaitForCompletion() failed\n");
368 catch (MyError &e)