Skip to content

Commit

Permalink
QListener pushes all types of exceptions via error callback
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejlach committed Jul 29, 2014
1 parent b51fc4e commit cb57f68
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
------------------------------------------------------------------------------
qSharp 2.0.4 [2014.07.29]
------------------------------------------------------------------------------

- QListener pushes all types of exceptions via error event handler

------------------------------------------------------------------------------
qSharp 2.0.3 [2014.06.10]
------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion qSharp/src/QCallbackConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ internal void Run()
{
connection.OnErrorOccured(new QErrorEvent(e));
}
catch (IOException e)
catch (Exception e)
{
connection.OnErrorOccured(new QErrorEvent(e));
Running = false;
Expand Down

0 comments on commit cb57f68

Please sign in to comment.