java.lang.Object | +----java.lang.Throwable | +----java.lang.Exception | +----java.lang.ClassNotFoundException
Thrown when an application tries to load in a class through its string name using:
forName
method in class Class
.
findSystemClass
method in class
ClassLoader
.
loadClass
method in class ClassLoader
.
but no definition for the class with the specifed name could be found.
ClassNotFoundException
with no detail message.
ClassNotFoundException
with the
specified detail message.
public ClassNotFoundException()
ClassNotFoundException
with no detail message.
public ClassNotFoundException(String s)
ClassNotFoundException
with the
specified detail message.