System.out.println("InterruptedIOException");
continue;
} catch(SmbException se) {
Throwable t = se.getRootCause();
if (t instanceof TransportException) {
TransportException te = (TransportException)t;
t = te.getRootCause();
if (t instanceof InterruptedException) {
System.out.println("InterruptedException in constructor");
continue;
}
}