Class SendException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.schlunzis.zis.stomp.client.SendException
- All Implemented Interfaces:
Serializable
Exception thrown for errors related to sending STOMP messages.
- Since:
- 1.0.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSendException(String message) Constructs a new SendException with the specified detail message.SendException(String message, Throwable cause) Constructs a new SendException with the specified detail message and cause.SendException(Throwable cause) Constructs a new SendException with the specified cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SendException
Constructs a new SendException with the specified detail message.- Parameters:
message- the detail message- Since:
- 1.0.0
-
SendException
-
SendException
Constructs a new SendException with the specified cause.- Parameters:
cause- the cause of the exception- Since:
- 1.0.0
-