SSLSocket socket = null;
try {
server = new Server();
socket = createSSLSocket(server.getPort());
socket.sendUrgentData(0);
fail("Expected exception was not thrown");
} catch (Exception e) {
if (doLog) {
System.out.println("Trowed exception: "+e.getMessage());
}