in compilers/rhino/src/main/java/org/apache/commons/jci2/compiler/rhino/RhinoJavaCompiler.java [121:134]
protected Class<?> findClass( final String pName ) throws ClassNotFoundException {
final Context context = Context.enter();
context.setErrorReporter(new ProblemCollector());
try {
return compileClass(context, pName);
} catch ( final EvaluatorException e ) {
throw new ClassNotFoundException(e.getMessage(), e);
} catch (final IOException e) {
throw new ClassNotFoundException(e.getMessage(), e);
} finally {
Context.exit();
}
}