Class java.lang.NoClassDefFoundError
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.lang.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 Index

 o NoClassDefFoundError()
Constructs a NoClassDefFoundError with no detail message.
 o NoClassDefFoundError(String)
Constructs a NoClassDefFoundError with the specified detail message.

Constructors

 o NoClassDefFoundError
  public NoClassDefFoundError()
Constructs a NoClassDefFoundError with no detail message. A detail message is a String that describes this particular exception.
 o 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

All Packages  Class Hierarchy  This Package  Previous  Next  Index