java.lang
Class ClassNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.ClassNotFoundException
-
public class ClassNotFoundException extends Exception
Thrown when a class loader is unable to find a class.
-
-
Constructor Summary
Constructors Constructor and Description ClassNotFoundException()
Constructs a newClassNotFoundException
that includes the current stack trace.ClassNotFoundException(String detailMessage)
Constructs a newClassNotFoundException
with the current stack trace and the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
fillInStackTrace, getMessage, getStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
ClassNotFoundException
public ClassNotFoundException()
Constructs a newClassNotFoundException
that includes the current stack trace.
-
ClassNotFoundException
public ClassNotFoundException(String detailMessage)
Constructs a newClassNotFoundException
with the current stack trace and the specified detail message.- Parameters:
detailMessage
- the detail message for this exception.
-
-