Class ConnectionException

All Implemented Interfaces:
PortableObject, SerializationSupport, Serializable
Direct Known Subclasses:
SuspectConnectionException

public class ConnectionException extends PortableException
Signals that an underlying communication channel used by a Connection may have been closed, severed, or become unusable.

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 3.2
Author:
jh 2006.06.08
See Also:
  • Constructor Details

    • ConnectionException

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

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

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

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

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

      public ConnectionException(String s, Throwable e)
      Construct a ConnectionException from a Throwable and an additional description.
      Parameters:
      s - the additional description
      e - the Throwable
    • ConnectionException

      public ConnectionException(String s, Throwable e, com.tangosol.net.messaging.Connection connection)
      Construct a ConnectionException from a Throwable, additional description, and a Connection.
      Parameters:
      s - the additional description
      e - the Throwable
      connection - the Connection where the error occurred