public void setFeature(String feature, boolean value) {
try {
parser.setFeature(feature, value);
} catch (SAXNotRecognizedException e) {
throw new WrappedRuntimeException(e);
} catch (SAXNotSupportedException e) {
throw new WrappedRuntimeException(e);
}
}