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 5cf07e8 commit 225831d
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 @@
------------------------------------------------------------------------------
qJava 2.0.3 [2014.07.29]
------------------------------------------------------------------------------

- QListener pushes all types of exceptions via error callback

------------------------------------------------------------------------------
qJava 2.0.2 [2014.06.10]
------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/exxeleron/qjava/QCallbackConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public void run() {
fireMessageReceivedEvent(message);
} catch ( final QException e ) {
fireErrorReceivedEvent(new QErrorMessage(e));
} catch ( final IOException e ) {
} catch ( final Exception e ) {
fireErrorReceivedEvent(new QErrorMessage(e));
running = false;
break;
Expand Down

0 comments on commit 225831d

Please sign in to comment.