Here you can find the source of isSocketClosed(SocketException e)
public static boolean isSocketClosed(SocketException e)
//package com.java2s; //License from project: Open Source License import java.net.SocketException; public class Main { public static boolean isSocketClosed(SocketException e) { return e.getMessage().equals("Socket closed"); }//from w w w. j av a2s.co m }