Reputation:
Which sub-types of IOException relating to socket IO makes a java socket invalid for resue when thrown. SocketException, InterruptedIOException, ...?
Upvotes: 0
Views: 45
Reputation: 310869
All of them except SocketTimeoutException
on a read, and exceptions arising out of getting or setting socket options.
Upvotes: 1