log.debug("SQL result set created");
this.numCols = this.resultSet.getMetaData().getColumnCount();
} catch (SQLException ex) {
if (cancelled) {
log.debug("SQL query execution cancelled", ex);
throw new QueryCancelledException();
}
throw new D2RQException(ex.getMessage() + ": " + this.sql);
}
}