Skip to content

Commit

Permalink
small pre-release fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ariacom committed Aug 16, 2015
1 parent 8260803 commit f5332f8
Show file tree
Hide file tree
Showing 3 changed files with 126 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,11 @@ build/
bld/
[Bb]in/
[Oo]bj/

#specific for Seal
work/
[Pp]ackages
[Pp]ackages/
temp/


# =========================
Expand Down
4 changes: 2 additions & 2 deletions Projects/SealLibrary/Model/ReportModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ public void FillResultTable()
}
catch (Exception ex)
{
ExecutionError = string.Format("Got unexpected error when building NoSQL Table:\r\n{0}\r\n", ex.Message);
throw new Exception(string.Format("Got unexpected error when building NoSQL Table:\r\n{0}\r\n", ex.Message));
}
}
else if (!string.IsNullOrEmpty(_sql) && !Report.Cancel)
Expand Down Expand Up @@ -1091,7 +1091,7 @@ public void FillResultTable()
}
catch (Exception ex)
{
ExecutionError = string.Format("Unexpected error when executing the following SQL statement:\r\n{0}\r\n\r\nError detail:\r\n{1}", _sql, ex.Message);
throw new Exception(string.Format("Unexpected error when executing the following SQL statement:\r\n{0}\r\n\r\nError detail:\r\n{1}", _sql, ex.Message));
}

if (Report.Cancel) return;
Expand Down
Loading

0 comments on commit f5332f8

Please sign in to comment.