This commit is contained in:
Shikhar Bhushan
2010-03-21 01:29:07 +01:00
parent 89d03361ba
commit 53d8d548cf

View File

@@ -34,13 +34,12 @@ public interface Channel
/**
* Request opening this channel from remote end.
*
* @throws OpenFailException in case the channel open request was rejected
* @throws net.schmizz.sshj.connection.ConnectionException
* other connection-layer error
* @throws TransportException error writing packets etc.
* @throws OpenFailException in case the channel open request was rejected
* @throws ConnectionException other connection-layer error
* @throws TransportException error writing packets etc.
*/
void open()
throws OpenFailException, ConnectionException, TransportException;
throws ConnectionException, TransportException;
}