public class ChannelClosedException extends ChannelStateException
| Constructor and Description |
|---|
ChannelClosedException()
Deprecated.
Use
ChannelClosedException(Throwable) or ChannelClosedException(java.lang.String, java.lang.Throwable).
This constructor will not include cause of the termination. |
ChannelClosedException(Channel channel,
String message,
Throwable cause)
Constructor.
|
ChannelClosedException(Channel channel,
Throwable cause)
Constructor.
|
ChannelClosedException(String message,
Throwable cause)
Deprecated.
|
ChannelClosedException(Throwable cause)
Deprecated.
|
getChannel, getChannelName, getChannelRef, getMessageaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString@Deprecated public ChannelClosedException()
ChannelClosedException(Throwable) or ChannelClosedException(java.lang.String, java.lang.Throwable).
This constructor will not include cause of the termination.@Deprecated public ChannelClosedException(Throwable cause)
ChannelClosedException(Channel, Throwable)public ChannelClosedException(@CheckForNull
Channel channel,
@CheckForNull
Throwable cause)
channel - Reference to the channel. null if the channel is unknown.cause - Cause@Deprecated public ChannelClosedException(@NonNull String message, @CheckForNull Throwable cause)
ChannelClosedException(Channel, String, Throwable)message - Messagecause - Cause of the channel close/termination.
May be null if it cannot be determined when the exception is constructed.public ChannelClosedException(@CheckForNull
Channel channel,
@NonNull
String message,
@CheckForNull
Throwable cause)
channel - Reference to the channel. null if the channel is unknown.message - Messagecause - Cause of the channel close/termination.
May be null if it cannot be determined when the exception is constructed.Copyright © 2004–2022. All rights reserved.