Class ConnectionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.schlunzis.zis.stomp.client.ConnectionException
All Implemented Interfaces:
Serializable

public final class ConnectionException extends RuntimeException
Exception thrown if an error occurs while connecting to the STOMP server.
Since:
1.0.0
See Also:
  • Constructor Details

    • ConnectionException

      public ConnectionException(String message)
      Constructs a new ConnectionException with the specified detail message.
      Parameters:
      message - the detail message
      Since:
      1.0.0
    • ConnectionException

      public ConnectionException(String message, Throwable cause)
      Constructs a new ConnectionException with the specified detail message and cause.
      Parameters:
      message - the detail message
      cause - the cause of the exception
      Since:
      1.0.0
    • ConnectionException

      public ConnectionException(Throwable cause)
      Constructs a new ConnectionException with the specified cause.
      Parameters:
      cause - the cause of the exception
      Since:
      1.0.0