Class MessagingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.messaging.MessagingException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BatchDeliveryException, MessagingRejectedException
Runtime exception thrown by the messaging runtime.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMessagingException(String message) Create a messaging exception.MessagingException(String message, Throwable cause) Create a messaging exception. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MessagingException
Create a messaging exception.- Parameters:
message- exception message- Throws:
NullPointerException- ifmessageisnull
-
MessagingException
Create a messaging exception.- Parameters:
message- exception messagecause- root cause- Throws:
NullPointerException- ifmessageorcauseisnull
-