3443344434453446344734483449345034513452
_queries.add(q); return q; } catch (OpenJPAException ke) { throw ke; } catch (RuntimeException re) { throw new GeneralException(re); } finally { endOperation(); } }
3537353835393540354135423543354435453546
_lm.lock(sm, level, timeout, null); sm.readLocked(level, level); // use same level for future write } catch (OpenJPAException ke) { throw ke; } catch (RuntimeException re) { throw new GeneralException(re); } finally { endOperation(); } }
3591359235933594359535963597359835993600
for (Iterator itr = sms.iterator(); itr.hasNext();) ((StateManagerImpl) itr.next()).readLocked(level, level); } catch (OpenJPAException ke) { throw ke; } catch (RuntimeException re) { throw new GeneralException(re); } finally { endOperation(); } }
149150151152153154155156157158159
citr = chain; citr.setRemoveOnClose(this); } catch (OpenJPAException ke) { throw ke; } catch (RuntimeException re) { throw new GeneralException(re); } lock(); try { if (_openItrs == null)
194195196197198199200201202203
} _openItrs.clear(); } catch (OpenJPAException ke) { throw ke; } catch (RuntimeException re) { throw new GeneralException(re); } finally { unlock(); } }
47424743474447454746474747484749475047514752
String keywords = new BufferedReader(new InputStreamReader(in)). readLine(); reservedWordSet.addAll(Arrays.asList(Strings.split (keywords, ",", 0))); } catch (IOException ioe) { throw new GeneralException(ioe); } finally { try { in.close(); } catch (IOException e) {} } // add additional reserved words set by user
290291292293294295296297298299300
xmlParser.setEnvClassLoader(envLoader); xmlParser.setMode(mode); try { xmlParser.parse(xml); } catch (IOException ioe) { throw new GeneralException(ioe); } finally { resetXMLParser(); } }
138139140141142143144145146147148
} } } } } catch (Exception e) { throw new GeneralException(e); } if (mustExist) throw new UserException(_loc.get("bad-getter", cls, prop)); return null;
177178179180181182183184185186187
setSetterMethod(cls, prop, m); return m; } } } catch (Exception e) { throw new GeneralException(e); } if (mustExist) throw new UserException(_loc.get("bad-setter", cls, prop)); return null;
259260261262263264265266267268269
f = getDeclaredField(c, name); if (f != null) return f; } } catch (Exception e) { throw new GeneralException(e); } if (mustExist) throw new UserException(_loc.get("bad-field", cls, name)); return null;