in src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java [68:77]
public static Class<?> getClassByName(final String name) throws ClassNotFoundException {
final Class<?> ret = getClassByNameOrNull(name);
if (ret == null) {
if (INIT_ERROR_CLASSES.get(CLASS_LOADER).contains(name)) {
throw new IllegalStateException("Class " + name + " initialization error");
}
throw new ClassNotFoundException("Class " + name + " not found");
}
return ret;
}