use of com.yahoo.document.select.parser.ParseException in project vespa by vespa-engine.
the class VespaDocumentDeserializer42 method read.
public void read(FieldPathUpdate update) {
String fieldPath = getString(null);
String whereClause = getString(null);
update.setFieldPath(fieldPath);
try {
update.setWhereClause(whereClause);
} catch (ParseException e) {
throw new DeserializationException(e);
}
}
Aggregations