Skip to content

Commit

Permalink
forward caught exception to next filter (#156)
Browse files Browse the repository at this point in the history
minor cleanup
  • Loading branch information
chrjohn authored Nov 21, 2017
1 parent a1bedae commit 01af2c3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public void testLogonWithBadCertificate() throws Exception {
public void exceptionCaught(NextFilter nextFilter, IoSession session, Throwable cause) throws Exception {
log.info("MINA exception: {}", cause.getMessage());
exceptionCaught.countDown();
nextFilter.exceptionCaught(session, cause);
}
}));

Expand Down

0 comments on commit 01af2c3

Please sign in to comment.