We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49a69e3 commit 435ba9cCopy full SHA for 435ba9c
opengrok-indexer/src/main/java/org/opengrok/indexer/history/HistoryClassLoader.java
@@ -53,7 +53,7 @@ public class HistoryClassLoader extends ClassLoader {
53
@Override
54
public Class<?> loadClass(final String name) throws ClassNotFoundException {
55
if (!allowedClasses.contains(name)) {
56
- throw new IllegalAccessError(name + " is not allowed to be used in configuration");
+ throw new IllegalAccessError(name + " is not allowed to be used in History object");
57
}
58
59
return getClass().getClassLoader().loadClass(name);
0 commit comments