Class ClassNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.ReflectiveOperationException
java.lang.ClassNotFoundException
- All Implemented Interfaces:
Serializable
Thrown when an application tries to load in a class through itsstring name using:
- The
forNamemethod in classClass. - The
findSystemClassmethod in classClassLoader. - The
loadClassmethod in classClassLoader.
but no definition for the class with the specified name could be found.
Constructor Summary
ConstructorsConstructorDescriptionConstructs aClassNotFoundExceptionwith no detail message.Constructs aClassNotFoundExceptionwith thespecified detail message.Constructs aClassNotFoundExceptionwith thespecified detail message and optional exception that wasraised while loading the class.Method Summary
Modifier and TypeMethodDescriptionReturns the exception that was raised if an error occurred whileattempting to load the class.
Constructor Details
ClassNotFoundException
public ClassNotFoundException()Constructs aClassNotFoundExceptionwith no detail message.ClassNotFoundException
Constructs aClassNotFoundExceptionwith thespecified detail message.- Parameters:
s- the detail message.
ClassNotFoundException
Method Details
getException
Returns the exception that was raised if an error occurred whileattempting to load the class. Otherwise, returnsnull.- API Note:
- This method predates the general-purpose exception chaining facility.The
Throwable.getCause()method is now the preferred means ofobtaining this information. - Returns:
- the
Exceptionthat was raised while loading a class - Since:
- 1.2