Package com.sun.jdi

Examples of com.sun.jdi.VMCannotBeModifiedException


   * @since 3.3
   */
  public void forceEarlyReturn(Value value) throws InvalidTypeException,
      ClassNotLoadedException, IncompatibleThreadStateException {
    if (!virtualMachineImpl().canBeModified()) {
      throw new VMCannotBeModifiedException(
          JDIMessages.ThreadReferenceImpl_vm_read_only);
    }
    initJdwpRequest();
    ByteArrayOutputStream byteOutStream = new ByteArrayOutputStream();
    DataOutputStream dataOutStream = new DataOutputStream(byteOutStream);
View Full Code Here

TOP

Related Classes of com.sun.jdi.VMCannotBeModifiedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.