Spring Integration

org.springframework.integration
Class MessageDispatchingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.integration.MessagingException
                  extended by org.springframework.integration.MessageDeliveryException
                      extended by org.springframework.integration.MessageDispatchingException
All Implemented Interfaces:
java.io.Serializable

public class MessageDispatchingException
extends MessageDeliveryException

Exception that indicates an internal error occurred within a MessageDispatcher preventing message delivery.

Since:
2.1
Author:
Gary Russell
See Also:
Serialized Form

Constructor Summary
MessageDispatchingException(Message<?> undeliveredMessage)
           
MessageDispatchingException(Message<?> undeliveredMessage, java.lang.String description)
           
MessageDispatchingException(Message<?> undeliveredMessage, java.lang.String description, java.lang.Throwable cause)
           
MessageDispatchingException(java.lang.String description)
           
 
Method Summary
 
Methods inherited from class org.springframework.integration.MessagingException
getFailedMessage, setFailedMessage
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MessageDispatchingException

public MessageDispatchingException(java.lang.String description)

MessageDispatchingException

public MessageDispatchingException(Message<?> undeliveredMessage,
                                   java.lang.String description,
                                   java.lang.Throwable cause)

MessageDispatchingException

public MessageDispatchingException(Message<?> undeliveredMessage,
                                   java.lang.String description)

MessageDispatchingException

public MessageDispatchingException(Message<?> undeliveredMessage)

Spring Integration