Class SuspectConnectionException

  • All Implemented Interfaces:
    PortableObject, SerializationSupport, Serializable

    public class SuspectConnectionException
    extends ConnectionException
    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:
    Serialized Form
    • Constructor Detail

      • SuspectConnectionException

        public SuspectConnectionException()
        Construct a SuspectConnectionException with no detail message.
      • SuspectConnectionException

        public SuspectConnectionException​(String s)
        Construct a SuspectConnectionException with the specified detail message.
        Parameters:
        s - the String that contains a detailed message
      • SuspectConnectionException

        public SuspectConnectionException​(String s,
                                          com.tangosol.net.messaging.Connection connection)
        Construct a SuspectConnectionException with the specified detail message and Connection.
        Parameters:
        s - the String that contains a detailed message
        connection - the Connection where the error occurred
      • SuspectConnectionException

        public SuspectConnectionException​(Throwable e)
        Construct a SuspectConnectionException from a Throwable.
        Parameters:
        e - the Throwable
      • SuspectConnectionException

        public SuspectConnectionException​(Throwable e,
                                          com.tangosol.net.messaging.Connection connection)
        Construct a SuspectConnectionException from a Throwable and Connection.
        Parameters:
        e - the Throwable
        connection - the Connection where the error occurred
      • SuspectConnectionException

        public SuspectConnectionException​(String s,
                                          Throwable e)
        Construct a SuspectConnectionException from a Throwable and an additional description.
        Parameters:
        s - the additional description
        e - 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 description
        e - the Throwable
        connection - the Connection where the error occurred