{
TxnInfo txnInfo = checkTxn(txn);
byte[] result = oidsDb.get(
txnInfo.dbTxn, DataEncoding.encodeLong(oid), forUpdate);
if (result == null || isPlaceholderValue(result)) {
throw new ObjectNotFoundException("Object not found: " + oid);
}
return decodeValue(result);
}