in src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java [528:538]
public final T handle(final ResultSet resultSet) throws SQLException {
if (this.resultSet != null) {
throw new IllegalStateException("Re-entry not allowed!");
}
this.resultSet = resultSet;
try {
return handle();
} finally {
this.resultSet = null;
}
}