try {
if (debugMode) {
System.err.println("--- Loading the vocabulary...");
}
vocabulary = new Vocabulary(vocabularyName, vocabularyFormat);
vocabulary.setStemmer(stemmer);
vocabulary.setStopwords(stopwords);
vocabulary.setDebug(debugMode);
vocabulary.initialize();
} catch (Exception e) {