Create a new instance of the given class. @param clazz The class to instantiate @return the new instance @throws IllegalAccessException if the class or its nullary constructor is not accessible @throws InvocationTargetException if the nullary constructor throws an exception @throws NamingException
(Class<?> clazz)
| 40 | * @throws SecurityException if a security manager, s, is present |
| 41 | */ |
| 42 | Object newInstance(Class<?> clazz) throws IllegalAccessException, InvocationTargetException, NamingException, |
| 43 | InstantiationException, IllegalArgumentException, NoSuchMethodException, SecurityException; |
| 44 | |
| 45 | /** |
no outgoing calls