|
@@ -240,11 +240,9 @@ public class PathScanner {
|
|
|
private Class<?> loadClass(String className) {
|
|
private Class<?> loadClass(String className) {
|
|
|
try {
|
|
try {
|
|
|
return classLoader.loadClass(className);
|
|
return classLoader.loadClass(className);
|
|
|
- } catch (NoClassDefFoundError | UnsupportedClassVersionError e) {
|
|
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
|
throw new RuntimeException(e);
|
|
throw new RuntimeException(e);
|
|
|
}
|
|
}
|
|
|
- return null;
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|