Package com.sun.jdi

Examples of com.sun.jdi.NativeMethodException


    case JdwpReplyPacket.OUT_OF_MEMORY:
      throw new VMOutOfMemoryException();
    case JdwpReplyPacket.ILLEGAL_ARGUMENT:
      throw new IllegalArgumentException();
    case JdwpReplyPacket.NATIVE_METHOD:
      throw new NativeMethodException();
    case JdwpReplyPacket.INVALID_FRAMEID:
      throw new InvalidStackFrameException();
    case JdwpReplyPacket.NOT_IMPLEMENTED:
      throw new UnsupportedOperationException();
    case JdwpReplyPacket.HCR_OPERATION_REFUSED:
View Full Code Here


            JDIMessages.ThreadReferenceImpl_thread_not_suspended);
      case JdwpReplyPacket.NOT_IMPLEMENTED:
        throw new UnsupportedOperationException(
            JDIMessages.ThreadReferenceImpl_no_force_early_return_on_threads);
      case JdwpReplyPacket.OPAQUE_FRAME:
        throw new NativeMethodException(
            JDIMessages.ThreadReferenceImpl_thread_cannot_force_native_method);
      case JdwpReplyPacket.NO_MORE_FRAMES:
        throw new InvalidStackFrameException(
            JDIMessages.ThreadReferenceImpl_thread_no_stackframes);
      case JdwpReplyPacket.TYPE_MISMATCH:
View Full Code Here

TOP

Related Classes of com.sun.jdi.NativeMethodException

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.