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
- Direct Known Subclasses:
SshChannelClosedException
,SshChannelNotFoundException
,SshChannelOpenException
public class SshChannelException extends java.io.IOException
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private int
channelId
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description SshChannelException(int channelId, java.lang.String message)
SshChannelException(int channelId, java.lang.String message, java.lang.Throwable cause)
SshChannelException(int channelId, java.lang.Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getChannelId()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
channelId
private final int channelId
-
-
Constructor Detail
-
SshChannelException
public SshChannelException(int channelId, java.lang.String message)
-
SshChannelException
public SshChannelException(int channelId, java.lang.Throwable cause)
-
SshChannelException
public SshChannelException(int channelId, java.lang.String message, java.lang.Throwable cause)
-
-