337338339340341342343344345346347
{ return null; } catch (QueryTimeoutException qte) { throw new JDOQueryTimeoutException("Query has timed out : " + qte.getMessage()); } catch (QueryInterruptedException qie) { throw new JDOQueryInterruptedException("Query has been cancelled : " + qie.getMessage()); }
8788899091929394
} try { return datastoreQuery.performExecute( LOCALISER, compilation, fromInclNo, toExclNo, params, true); } catch (QueryTimeoutException e) { throw new JDOQueryTimeoutException(e.getMessage()); } }