protected Class<?> findClass (String name) throws ClassNotFoundException

Finds the class with the specified binary name. This method should be overridden by class loader implementations that follow the delegation model for loading classes, and will be invoked by the loadClass method after checking the parent class loader for the requested class. The default implementation throws a ClassNotFoundException.

Parameters:
name     The binary name of the class

Returns:  The resulting Class object

Exceptions:
ClassNotFoundException     If the class could not be found

Since:  1.2