}
static private DictRadix<MorphData> loadFromClasspath(final String pathInClasspath) {
try {
HSpellLoader loader = new HSpellLoader(Thread.currentThread().getContextClassLoader(), pathInClasspath, true);
return loader.loadDictionaryFromHSpellData();
} catch (IOException ex) {
try {
// Try to use environment variable if failed with classpath
return loadFromEnvVariable();
} catch (IOException e) {