throws ShellCommandUsageException, ShellCommandExecException
{
try {
VMControlLibrary.link();
} catch (IOException e) {
throw new ShellCommandExecException(e.getMessage());
}
if (!VMControlLibrary.isLoaded()) {
throw new ShellCommandExecException("Library not available");
}
}