if (status == SUCCESS) {
return convertData(valueEntry.getData());
} else if (status == NOTFOUND) {
return null;
} else {
throw new DbDatabaseException("Operation failed: " + status);
}
} catch (DatabaseException e) {
throw JeEnvironment.convertException(e, true);
}
}