Class SubscriptionException

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

public final class SubscriptionException extends RuntimeException
Exception thrown for errors related to STOMP subscriptions.
Since:
1.0.0
See Also:
  • Constructor Details

    • SubscriptionException

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

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

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