Class SendException

All Implemented Interfaces:
Serializable

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

    • SendException

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

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

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