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

View File

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