694695696697698699700701702703704
} }; Throwable error = null; try { filter.preparedStatement_execute(chain, statement); } catch (SQLException ex) { error = ex; } Assert.assertNotNull(error); }
711712713714715716717718719720721
} }; Throwable error = null; try { filter.preparedStatement_execute(chain, statement); } catch (RuntimeException ex) { error = ex; } Assert.assertNotNull(error); }
728729730731732733734735736737738
} }; Throwable error = null; try { filter.preparedStatement_execute(chain, statement); } catch (Error ex) { error = ex; } Assert.assertNotNull(error); }