public final T handle()

in src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java [677:689]


    public final T handle(final ResultSet rs) throws SQLException {
        if (this.resultSet != null) {
            throw new IllegalStateException("Re-entry not allowed!");
        }

        this.resultSet = rs;

        try {
            return handle();
        } finally {
            this.resultSet = null;
        }
    }