user4852164
user4852164

Reputation:

Which exceptions invalidates a java socket?

Which sub-types of IOException relating to socket IO makes a java socket invalid for resue when thrown. SocketException, InterruptedIOException, ...?

Upvotes: 0

Views: 45

Answers (1)

user207421
user207421

Reputation: 310869

All of them except SocketTimeoutException on a read, and exceptions arising out of getting or setting socket options.

Upvotes: 1

Related Questions