Merged in changes from FESI 1.1.5

This commit is contained in:
hns 2002-11-29 14:46:07 +00:00
parent 765b1dddf8
commit 3e5a3516d8

View file

@ -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 {