882883884885886887888889890
{ throw (SQLException) result; } else { throw new NestedSQLException("Error", result); } }
101102103104105106107108
{ return (Connection)cm.allocateConnection(mcf, null); } catch (ResourceException re) { throw new NestedSQLException(re); } // end of try-catch }
121122123124125126127128
{ return (Connection)cm.allocateConnection(mcf, cri); } catch (ResourceException re) { throw new NestedSQLException(re); } // end of try-catch }
9091929394959697
wc.setDataSource(this); return wc; } catch (ResourceException re) { throw new NestedSQLException(re); } }
105106107108109110111112
140141142143144145146147
else return -1; } catch (RollbackException e) { throw new NestedSQLException(e); } }
160161162163164165166167
if (cm instanceof JTATransactionChecker) ((JTATransactionChecker) cm).checkTransactionActive(); } catch (Exception e) { throw new NestedSQLException(e); } }
868869870871872873874875876
516517518519520521522
/* 571 */ if ((result instanceof SQLException)) /* */ { /* 573 */ throw ((SQLException)result); /* */ } /* */ /* 577 */ throw new NestedSQLException("Error", result); /* */ }
58596061626364
/* 89 */ wc.setDataSource(this); /* 90 */ return wc; /* */ } /* */ catch (ResourceException re) { /* */ } /* 94 */ throw new NestedSQLException(re); /* */ }