in src/main/java/org/apache/nutch/webui/config/CustomTableCreator.java [40:49]
private void initialize() {
if (configuredDaos == null) {
throw new IllegalStateException("configuredDaos was not set in "
+ getClass().getSimpleName());
}
for (Dao<?, ?> dao : configuredDaos) {
createTableForDao(dao);
}
}