try {
stemMethod.invoke(stemmer, new Object[0]);
} catch (IllegalAccessException e) {
throw new WVToolException("Could not stem word " + s, e);
} catch (InvocationTargetException e) {
throw new WVToolException("Could not stem word " + s, e);
}
return stemmer.getCurrent();
} else