The documentation says that Socket's setSoTimeout(int) method
throws SocketException - if there is an error in the underlying protocol, such as a TCP error
Have you ever caught this exception? When using TCP sockets, what kind of TCP error could make this method throw the exception?
EDIT:
Let me try to be a bit more specific and deeper. I'm not looking for the trivial (eg, a closed socket will throw this exception) that can be easily found elsewhere.
Suppose the Socket (representing a TCP connection) has just been created, is connected, and not yet closed. I've not yet performed any reads/writes on it. I'm running on Linux (Ubuntu Server 11.04), so we can forget the case in which the TCP implementation doesn't support read timeouts.
Now, can this exception be thrown in this situation? If so, what does it mean? Is it something specific to the current Socket instance? If I simply close() it and somehow obtain a new one, should it work? Is it a bigger problem I cannot recover from (such as a problem in the operating system), and should better shutdown my application?