java.lang
Class NoClassDefFoundError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Error
              |
              +--java.lang.LinkageError
                    |
                    +--java.lang.NoClassDefFoundError

public class NoClassDefFoundError
extends LinkageError

Signals that a class could not be found.


Constructor Summary
NoClassDefFoundError()
          Constructs a NoClassDefFoundError with no detail message.
NoClassDefFoundError(String s)
          Constructs a NoClassDefFoundError with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getMessage, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoClassDefFoundError

public NoClassDefFoundError()
Constructs a NoClassDefFoundError with no detail message. A detail message is a String that describes this particular exception.


NoClassDefFoundError

public NoClassDefFoundError(String s)
Constructs a NoClassDefFoundError with the specified detail message. A detail message is a String that describes this particular exception.

Parameters:
s - the detail message