Java Debug Interface

com.sun.jdi
Class ClassNotPreparedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--com.sun.jdi.ClassNotPreparedException

public class ClassNotPreparedException
extends java.lang.RuntimeException

Thrown to indicate that the requested operation cannot be completed because the specified class has not yet been prepared.

Since:
1.3
See Also:
Serialized Form

Constructor Summary
ClassNotPreparedException()
           
ClassNotPreparedException(java.lang.String s)
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ClassNotPreparedException

public ClassNotPreparedException()

ClassNotPreparedException

public ClassNotPreparedException(java.lang.String s)

Java Debug Interface