}
myOutputStream = mySession.getStdin();
myOutputStream = new BufferedOutputStream(myOutputStream, 16*1024);
myInputStream = mySession.getStdout();
myInputStream = new BufferedInputStream(myInputStream, 16*1024);
new StreamGobbler(mySession.getStderr());
myConnection = connection;
return;
} catch (SocketTimeoutException e) {
SVNErrorMessage err = SVNErrorMessage.create(SVNErrorCode.RA_SVN_IO_ERROR, "timed out waiting for server", null, SVNErrorMessage.TYPE_ERROR, e);
SVNErrorManager.error(err, e, SVNLogType.NETWORK);