Package gnu.classpath.jdwp.exception

Examples of gnu.classpath.jdwp.exception.InvalidThreadException


   */
  public ThreadOnlyFilter (ThreadId tid)
    throws InvalidThreadException
  {
    if (tid == null || tid.getReference().get () == null)
      throw new InvalidThreadException (tid.getId ());

    _tid = tid;
  }
View Full Code Here


   */
  public StepFilter (ThreadId tid, int size, int depth)
    throws InvalidThreadException
  {
    if (tid.getReference().get () == null)
      throw new InvalidThreadException (tid.getId ());

    _tid = tid;
    _size = size;
    _depth = depth;
  }
View Full Code Here

    /* Spec says if thread is null, not valid, or exited,
       throw invalid thread */
    // FIXME: not valid? exited? Is this check valid?
    if (thread == null || !thread.isAlive ())
      throw new InvalidThreadException (getId ());

    return thread;
  }
View Full Code Here

TOP

Related Classes of gnu.classpath.jdwp.exception.InvalidThreadException

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.