Skip to content

Commit

Permalink
Merge of change a5c552f74ed8068a7b40fa6f2b3e9a995d94e100 from Mondria…
Browse files Browse the repository at this point in the history
…n's master.
  • Loading branch information
lucboudreau committed Feb 21, 2013
1 parent 2f444e2 commit 34e6697
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/main/java/mondrian/xmla/Rowset.java
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,11 @@ public final void populate(
handler.connectionFactory.startRequest(request, connection);
populateImpl(response, connection, rows);
} catch (SQLException e) {
// TODO:
e.printStackTrace();
throw new XmlaException(
UNKNOWN_ERROR_CODE,
UNKNOWN_ERROR_FAULT_FS,
"SqlException:",
e);
} finally {
handler.connectionFactory.endRequest(request1);
if (connection != null && ourConnection) {
Expand Down

0 comments on commit 34e6697

Please sign in to comment.