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 long
channelId
private static long
serialVersionUID
-
Constructor Summary
Constructors Modifier Constructor Description protected
SshChannelException(long channelId, java.lang.String message)
protected
SshChannelException(long channelId, java.lang.String message, java.lang.Throwable cause)
protected
SshChannelException(long channelId, java.lang.Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getChannelId()
-
-
-
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:
getChannelId
in interfaceChannelIdentifier
- Returns:
- Local channel UINT32 identifier
-
-