use of org.apache.rya.export.api.store.UpdateStatementException in project incubator-rya by apache.
the class AccumuloRyaStatementStore method updateStatement.
@Override
public void updateStatement(final RyaStatement original, final RyaStatement update) throws UpdateStatementException {
try {
removeStatement(original);
addStatement(update);
} catch (final AddStatementException | RemoveStatementException e) {
throw new UpdateStatementException("Unable to update the Rya Statement", e);
}
}
Aggregations