261262263264265266267268269270
return null; } else { return result; } } catch (ExecutionException ex) { throw new CacheException(ex); } finally { cacheGetTimerContext.stop(); } }
275276277278279280281282
if (val == null) { return null; } return (T) val; } catch (ClassCastException ex) { throw new CacheException(ex); } }
319320321322323324325326
private void databasePut(Locator locator, String key, String value) throws CacheException { try { io.put(locator, key, value); } catch (IOException ex) { throw new CacheException(ex); } }
354355356357358359360361
value = NULL; } return value; } catch (IOException ex) { throw new CacheException(ex); } }