Class SshChannelException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.apache.sshd.common.channel.exception.SshChannelException
-
- All Implemented Interfaces:
java.io.Serializable,ChannelIdentifier
- Direct Known Subclasses:
SshChannelBufferedOutputException,SshChannelClosedException,SshChannelInvalidPacketException,SshChannelNotFoundException,SshChannelOpenException
public abstract class SshChannelException extends java.io.IOException implements ChannelIdentifier
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private longchannelIdprivate static longserialVersionUID
-
Constructor Summary
Constructors Modifier Constructor Description protectedSshChannelException(long channelId, java.lang.String message)protectedSshChannelException(long channelId, java.lang.String message, java.lang.Throwable cause)protectedSshChannelException(long channelId, java.lang.Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetChannelId()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
channelId
private final long channelId
-
-
Constructor Detail
-
SshChannelException
protected SshChannelException(long channelId, java.lang.String message)
-
SshChannelException
protected SshChannelException(long channelId, java.lang.Throwable cause)
-
SshChannelException
protected SshChannelException(long channelId, java.lang.String message, java.lang.Throwable cause)
-
-
Method Detail
-
getChannelId
public long getChannelId()
- Specified by:
getChannelIdin interfaceChannelIdentifier- Returns:
- Local channel UINT32 identifier
-
-