ClassLoader.findSystemClass
Class Overview | Class Members |
This Package |
All Packages
protected final Class findSystemClass( String name ) throws ClassNotFoundException
Parameters
- name
- the name of the system class.
Returns
a system class with the given name.
Description
Finds the system class with the specified name, loading it in if
necessary.
A system class is a class loaded from the local file system in a
platform- dependent way. It has no class loader.
Exceptions
ClassNotFoundException
if it could not find a definition
for the class.
Exceptions
NoClassDefFoundError
if the class is not found.