Package com.tangosol.net.messaging
Class SuspectConnectionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.tangosol.io.pof.PortableException
com.tangosol.net.messaging.ConnectionException
com.tangosol.net.messaging.SuspectConnectionException
- All Implemented Interfaces:
PortableObject
,SerializationSupport
,Serializable
Signals that an underlying communication channel used by a Connection may
have been closed, severed, or become unusable because the suspect
protocol has disconnected the client.
After this exception is thrown, any attempt to use the Connection (or any Channel created by the Connection) may result in an exception.
- Since:
- Coherence 12.1.3
- Author:
- par 2013.06.13
- See Also:
-
Field Summary
Fields inherited from class com.tangosol.io.pof.PortableException
m_asStackRemote, m_sMessage, m_sName
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct a SuspectConnectionException with no detail message.Construct a SuspectConnectionException with the specified detail message.SuspectConnectionException
(String s, com.tangosol.net.messaging.Connection connection) Construct a SuspectConnectionException with the specified detail message and Connection.Construct a SuspectConnectionException from a Throwable and an additional description.SuspectConnectionException
(String s, Throwable e, com.tangosol.net.messaging.Connection connection) Construct a SuspectConnectionException from a Throwable, additional description, and a Connection.Construct a SuspectConnectionException from a Throwable.SuspectConnectionException
(Throwable e, com.tangosol.net.messaging.Connection connection) Construct a SuspectConnectionException from a Throwable and Connection. -
Method Summary
Methods inherited from class com.tangosol.io.pof.PortableException
getFullStackTrace, getMessage, getName, printStackTrace, printStackTrace, readExternal, readResolve, toString, writeExternal
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.tangosol.io.SerializationSupport
writeReplace
-
Constructor Details
-
SuspectConnectionException
public SuspectConnectionException()Construct a SuspectConnectionException with no detail message. -
SuspectConnectionException
Construct a SuspectConnectionException with the specified detail message.- Parameters:
s
- the String that contains a detailed message
-
SuspectConnectionException
Construct a SuspectConnectionException with the specified detail message and Connection.- Parameters:
s
- the String that contains a detailed messageconnection
- the Connection where the error occurred
-
SuspectConnectionException
Construct a SuspectConnectionException from a Throwable.- Parameters:
e
- the Throwable
-
SuspectConnectionException
Construct a SuspectConnectionException from a Throwable and Connection.- Parameters:
e
- the Throwableconnection
- the Connection where the error occurred
-
SuspectConnectionException
Construct a SuspectConnectionException from a Throwable and an additional description.- Parameters:
s
- the additional descriptione
- the Throwable
-
SuspectConnectionException
public SuspectConnectionException(String s, Throwable e, com.tangosol.net.messaging.Connection connection) Construct a SuspectConnectionException from a Throwable, additional description, and a Connection.- Parameters:
s
- the additional descriptione
- the Throwableconnection
- the Connection where the error occurred
-