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.
-
NoClassDefFoundError()
- Constructs a NoClassDefFoundError with no detail message.
-
NoClassDefFoundError(String)
- Constructs a NoClassDefFoundError with the specified detail message.
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
All Packages Class Hierarchy This Package Previous Next Index