which of the following exception will occur if some of the classes are missing during JVM run time
assume reflection is not being used
Answers
Answered by
0
- Class Not Found Exception is an exception that occurs when you try to load a class at run time using Class. forName() or loadClass() methods and mentioned classes are not found in the classpath. NoClassDefFoundError is an error that occurs when a particular class is present at compile time, but was missing at run time.
Similar questions