Ejemplo n.º 1
0
 private EventRequestManager getEventManager() throws DebuggerException {
   try {
     return vm.eventRequestManager();
   } catch (VMCannotBeModifiedException e) {
     throw new DebuggerException(e.getMessage(), e);
   }
 }
Ejemplo n.º 2
0
 @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();
   }
 }