ClassNotFoundException

ClassNotFoundException is a checked exception from java.lang package, you get generally when you load a class manually with forName() method of class Class. This you experience in JDBC (Java Database Connectivity) where you load the driver from hard disk. Observe the following snippet of code. Class.forName(“sun.jdbc.odbc.JdbcOdbcDriver”); In the above statement, forName() method of class Class …

ClassNotFoundException Read More »