Class<?> c = findClassImpl(jarURLs, clsName);
// InvalidJarException is thrown when a mapping for a class
// is not valid, i.e. we can't find the class by following the
// mapping.
if (c == null) {
throw new InvalidJarIndexException();
}
return c;
}
}
}