public Object getObject(Column storeColumn) {
try {
return resultData.getObject(storeColumn.getName());
} catch (NdbApiException ndbApiException) {
throw new ClusterJDatastoreException(local.message("ERR_Datastore"),
ndbApiException);
} catch (SQLException sqlException) {
throw new ClusterJDatastoreException(local.message("ERR_Datastore"),
sqlException);
}
}