Class ErrorMessage
- All Implemented Interfaces:
Serializable
,Message<Throwable>
GenericMessage
with a Throwable
payload.
The payload is typically a MessagingException
with the message at the point of failure in its failedMessage
property.
An optional originalMessage
may be provided, which represents the message
that existed at the point in the stack where the error message is created.
Consider some code that starts with a message, invokes some process that performs transformation on that message and then fails for some reason, throwing the exception. The exception is caught and an error message produced that contains both the original message, and the transformed message that failed.
- Since:
- 4.0
- Author:
- Mark Fisher, Oleg Zhurakousky, Gary Russell
- See Also:
-
Constructor Summary
ConstructorDescriptionErrorMessage
(Throwable payload) Create a new message with the given payload.ErrorMessage
(Throwable payload, Map<String, Object> headers) Create a new message with the given payload and headers.Create a new message with the given payload, headers and original message.ErrorMessage
(Throwable payload, Message<?> originalMessage) Create a new message with the given payload and original message.ErrorMessage
(Throwable payload, MessageHeaders headers) A constructor with theMessageHeaders
instance to use.ErrorMessage
(Throwable payload, MessageHeaders headers, Message<?> originalMessage) Create a new message with the payload,MessageHeaders
and original message. -
Method Summary
Methods inherited from class org.springframework.messaging.support.GenericMessage
equals, getHeaders, getPayload, hashCode
-
Constructor Details
-
ErrorMessage
Create a new message with the given payload.- Parameters:
payload
- the message payload (nevernull
)
-
ErrorMessage
Create a new message with the given payload and headers. The content of the given header map is copied.- Parameters:
payload
- the message payload (nevernull
)headers
- message headers to use for initialization
-
ErrorMessage
A constructor with theMessageHeaders
instance to use.Note: the given
MessageHeaders
instance is used directly in the new message, i.e. it is not copied.- Parameters:
payload
- the message payload (nevernull
)headers
- message headers
-
ErrorMessage
Create a new message with the given payload and original message.- Parameters:
payload
- the message payload (nevernull
)originalMessage
- the original message (if present) at the point in the stack where the ErrorMessage was created- Since:
- 5.0
-
ErrorMessage
Create a new message with the given payload, headers and original message. The content of the given header map is copied.- Parameters:
payload
- the message payload (nevernull
)headers
- message headers to use for initializationoriginalMessage
- the original message (if present) at the point in the stack where the ErrorMessage was created- Since:
- 5.0
-
ErrorMessage
Create a new message with the payload,MessageHeaders
and original message.Note: the given
MessageHeaders
instance is used directly in the new message, i.e. it is not copied.- Parameters:
payload
- the message payload (nevernull
)headers
- message headersoriginalMessage
- the original message (if present) at the point in the stack where the ErrorMessage was created- Since:
- 5.0
-
-
Method Details
-
getOriginalMessage
Return the original message (if available) at the point in the stack where the ErrorMessage was created.- Since:
- 5.0
-
toString
- Overrides:
toString
in classGenericMessage<Throwable>
-