Merged in changes from FESI 1.1.5
This commit is contained in:
parent
765b1dddf8
commit
3e5a3516d8
1 changed files with 4 additions and 4 deletions
|
@ -338,10 +338,10 @@ class ESRowSet extends ESObject {
|
||||||
this.statement = statement;
|
this.statement = statement;
|
||||||
this.resultSet = resultSet;
|
this.resultSet = resultSet;
|
||||||
|
|
||||||
if (sql==null) throw new NullPointerException();
|
if (sql==null) throw new NullPointerException("sql");
|
||||||
if (resultSet==null) throw new NullPointerException();
|
if (resultSet==null) throw new NullPointerException("resultSet");
|
||||||
if (statement==null) throw new NullPointerException();
|
if (statement==null) throw new NullPointerException("statement");
|
||||||
if (database==null) throw new NullPointerException();
|
if (database==null) throw new NullPointerException("database");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue