We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8c60c7 commit 20629e4Copy full SHA for 20629e4
ratis-common/src/main/java/org/apache/ratis/util/IOUtils.java
@@ -44,16 +44,6 @@
44
* IO related utility methods.
45
*/
46
public interface IOUtils {
47
- // Network exceptions for reconnection
48
- Class<?>[] NETWORK_EXCEPTIONS = {
49
- SocketException.class,
50
- SocketTimeoutException.class,
51
- ClosedChannelException.class,
52
- EOFException.class,
53
- AlreadyClosedException.class,
54
- TimeoutIOException.class
55
- };
56
-
57
static InterruptedIOException toInterruptedIOException(
58
String message, InterruptedException e) {
59
final InterruptedIOException iioe = new InterruptedIOException(message);
0 commit comments