| Revision | 93 (tree) |
|---|---|
| Time | 2015-08-24 01:28:04 |
| Author | t_nakayama1971 |
(empty log message)
| @@ -19,11 +19,14 @@ | ||
| 19 | 19 | /** |
| 20 | 20 | * コンストラクタ |
| 21 | 21 | * @param rs ResultSet |
| 22 | - * @throws JRException JR例外 | |
| 23 | 22 | */ |
| 24 | - public JRResultSetDataSourceEx(final ResultSet rs) throws JRException { | |
| 23 | + public JRResultSetDataSourceEx(final ResultSet rs) { | |
| 25 | 24 | 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 | + } | |
| 27 | 30 | } |
| 28 | 31 | |
| 29 | 32 | /** |