| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.ClassNotFoundException
ClassNotFoundException | public class ClassNotFoundException extends Exception (Code) | | This exception is thrown when a classloader is unable to find a class.
|
Method Summary | |
public Throwable | getCause() Answers the cause of this Throwable, or null if there is no cause. | public Throwable | getException() Answers the exception which occurred when loading the class. |
ClassNotFoundException | public ClassNotFoundException()(Code) | | Constructs a new instance of this class with its walkback filled in.
|
ClassNotFoundException | public ClassNotFoundException(String detailMessage)(Code) | | Constructs a new instance of this class with its walkback and message
filled in.
Parameters: detailMessage - String The detail message for the exception. |
ClassNotFoundException | public ClassNotFoundException(String detailMessage, Throwable exception)(Code) | | Constructs a new instance of this class with its walkback, message and
exception filled in.
Parameters: detailMessage - String The detail message for the exception. Parameters: exception - Throwable The exception which occurred while loading theclass. |
getCause | public Throwable getCause()(Code) | | Answers the cause of this Throwable, or null if there is no cause.
Throwable The receiver's cause. |
getException | public Throwable getException()(Code) | | Answers the exception which occurred when loading the class.
Throwable The exception which occurred while loading the class. |
|
|