protected List<String> getStrings(final String name) {
try {
return conf.getStringList(getConfName(name));
} catch (ConfigException.Missing e) {
throw new CrashnoteException("can not find config key '" + name + "'", e);
} catch (ConfigException.WrongType e) {
throw new CrashnoteException("config key '" + name + "' is not a list of strings", e);
}
}