206207208209210211212213
commit(); } catch (SQLException ex) { abort(); throw new RMStoreException(ex); } }
237238239240241242243244
255256257258259260261262
274275276277278279280281
393394395396397398399400401402403
commit(); } catch (SQLException ex) { abort(); throw new RMStoreException(ex); } catch (IOException ex) { abort(); throw new RMStoreException(ex); } }
411412413414415416417418419420421
443444445446447448449450
612613614615616617618619
SQLException se = ex; while (se.getNextException() != null) { se = se.getNextException(); LogUtils.log(LOG, Level.SEVERE, "CONNECT_EXC", se); } throw new RMStoreException(ex); } }
225226227228229230231232
256257258259260261262263