Add Javadoc

This commit is contained in:
Rossen Stoyanchev
2013-05-14 16:41:03 -04:00
parent 59ef34d769
commit 6825aaf41f
72 changed files with 259 additions and 146 deletions

View File

@@ -211,7 +211,7 @@ public class AbstractSockJsSessionTests extends BaseAbstractSockJsSessionTests<T
this.session.writeFrame(SockJsFrame.openFrame());
fail("expected exception");
}
catch (SockJsRuntimeException ex) {
catch (TransportErrorException ex) {
assertEquals(CloseStatus.SERVER_ERROR, this.session.getStatus());
verify(this.webSocketHandler).afterConnectionClosed(this.session, CloseStatus.SERVER_ERROR);
}