• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision93 (tree)
Time2015-08-24 01:28:04
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/framework/pjBat/src/project/batch/jasper/JRResultSetDataSourceEx.java (revision 92)
+++ trunk/framework/pjBat/src/project/batch/jasper/JRResultSetDataSourceEx.java (revision 93)
@@ -19,11 +19,14 @@
1919 /**
2020 * コンストラクタ
2121 * @param rs ResultSet
22- * @throws JRException JR例外
2322 */
24- public JRResultSetDataSourceEx(final ResultSet rs) throws JRException {
23+ public JRResultSetDataSourceEx(final ResultSet rs) {
2524 super(rs);
26- this.hasRecord = super.next();
25+ try {
26+ this.hasRecord = super.next();
27+ } catch (final JRException e) {
28+ throw new RuntimeException(e);
29+ }
2730 }
2831
2932 /**