private EventRequestManager getEventManager() throws DebuggerException { try { return vm.eventRequestManager(); } catch (VMCannotBeModifiedException e) { throw new DebuggerException(e.getMessage(), e); } }
@Override public void resume(ResumeAction action) throws DebuggerException { try { vm.resume(); LOG.debug("Resume VM"); } catch (VMCannotBeModifiedException e) { throw new DebuggerException(e.getMessage(), e); } finally { resetCurrentThread(); } }