Module java.base
Package java.lang

Class ClassNotFoundException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.ReflectiveOperationException
java.lang.ClassNotFoundException
All Implemented Interfaces:
Serializable

public classClassNotFoundExceptionextendsReflectiveOperationException
Thrown when an application tries to load in a class through its string name using:
  • TheforName method in classClass.
  • ThefindSystemClass method in classClassLoader .
  • TheloadClass method in classClassLoader.

but no definition for the class with the specified name could be found.

Since:
1.0
See Also: