Load the class with the specified name. This method searches for classes in the same manner as loadClass(String, boolean) with false as the second argument. @param name Name of the class to be loaded @exception ClassNotFoundException if the class was not found
(String name)
| 50 | * @exception ClassNotFoundException if the class was not found |
| 51 | */ |
| 52 | @Override |
| 53 | public Class<?> loadClass(String name) throws ClassNotFoundException { |
| 54 | return loadClass(name, false); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Load the class with the specified name, searching using the following algorithm until it finds and returns the |
no test coverage detected