Class ClientSessionRemotelyClosedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.qpid.protonj2.client.exceptions.ClientException
-
- org.apache.qpid.protonj2.client.exceptions.ClientIllegalStateException
-
- org.apache.qpid.protonj2.client.exceptions.ClientResourceRemotelyClosedException
-
- org.apache.qpid.protonj2.client.exceptions.ClientSessionRemotelyClosedException
-
- All Implemented Interfaces:
Serializable
public class ClientSessionRemotelyClosedException extends ClientResourceRemotelyClosedException
Root exception type for cases of remote closure or client createdSession
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClientSessionRemotelyClosedException(String message)
Creates a new session remotely closed exception.ClientSessionRemotelyClosedException(String message, Throwable cause)
Creates a new session remotely closed exception.ClientSessionRemotelyClosedException(String message, Throwable cause, ErrorCondition condition)
Creates a new session remotely closed exception.ClientSessionRemotelyClosedException(String message, ErrorCondition condition)
Creates a new session remotely closed exception.
-
Method Summary
-
Methods inherited from class org.apache.qpid.protonj2.client.exceptions.ClientResourceRemotelyClosedException
getErrorCondition
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ClientSessionRemotelyClosedException
public ClientSessionRemotelyClosedException(String message)
Creates a new session remotely closed exception.- Parameters:
message
- The message that describes the reason for the remote closure.
-
ClientSessionRemotelyClosedException
public ClientSessionRemotelyClosedException(String message, Throwable cause)
Creates a new session remotely closed exception.- Parameters:
message
- The message that describes the reason for the remote closure.cause
- An exception that further defines the remote close reason.
-
ClientSessionRemotelyClosedException
public ClientSessionRemotelyClosedException(String message, ErrorCondition condition)
Creates a new session remotely closed exception.- Parameters:
message
- The message that describes the reason for the remote closure.condition
- AnErrorCondition
that provides additional information about the close reason.
-
ClientSessionRemotelyClosedException
public ClientSessionRemotelyClosedException(String message, Throwable cause, ErrorCondition condition)
Creates a new session remotely closed exception.- Parameters:
message
- The message that describes the reason for the remote closure.cause
- An exception that further defines the remote close reason.condition
- AnErrorCondition
that provides additional information about the close reason.
-
-