What is the difference between ClassNotFoundException and NoClassDefFoundError ?
ClassNotFoundException 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...
Recent Comments