Class MessageStoreException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.messaging.MessagingException
org.springframework.integration.store.MessageStoreException
- All Implemented Interfaces:
Serializable
Exception for problems that occur when using a
MessageStore
implementation.- Since:
- 2.1
- Author:
- Oleg Zhurakousky
- See Also:
-
Constructor Summary
ConstructorDescriptionMessageStoreException
(String description) MessageStoreException
(String description, Throwable cause) MessageStoreException
(Message<?> message) MessageStoreException
(Message<?> message, String description) MessageStoreException
(Message<?> message, String description, Throwable cause) MessageStoreException
(Message<?> message, Throwable cause) -
Method Summary
Methods inherited from class org.springframework.messaging.MessagingException
getFailedMessage, toString
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
MessageStoreException
- Parameters:
message
- The message.
-
MessageStoreException
- Parameters:
description
- The description.
-
MessageStoreException
- Parameters:
description
- The description.cause
- The cause.
-
MessageStoreException
- Parameters:
message
- The message.description
- The description.
-
MessageStoreException
- Parameters:
message
- The message.cause
- The cause.
-
MessageStoreException
- Parameters:
message
- The message.description
- The description.cause
- The cause.
-