arguments[1] = this;
try {
final Constructor<?> constructor = kBestListClass.getConstructor(argTypes);
kBestList = (KBestList)constructor.newInstance(arguments);
} catch (NoSuchMethodException e) {
throw new HistoryException("The kBestlist '"+kBestListClass.getName()+"' cannot be initialized. ", e);
} catch (InstantiationException e) {
throw new HistoryException("The kBestlist '"+kBestListClass.getName()+"' cannot be initialized. ", e);
} catch (IllegalAccessException e) {
throw new HistoryException("The kBestlist '"+kBestListClass.getName()+"' cannot be initialized. ", e);
} catch (InvocationTargetException e) {
throw new HistoryException("The kBestlist '"+kBestListClass.getName()+"' cannot be initialized. ", e);
}
}