diff --git a/spring-integration-core/src/main/java/org/springframework/integration/core/MessageHandler.java b/spring-integration-core/src/main/java/org/springframework/integration/core/MessageHandler.java index 432f9cd24c..b95deb2b5b 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/core/MessageHandler.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/core/MessageHandler.java @@ -17,9 +17,6 @@ package org.springframework.integration.core; import org.springframework.integration.Message; -import org.springframework.integration.MessageDeliveryException; -import org.springframework.integration.MessageHandlingException; -import org.springframework.integration.MessageRejectedException; import org.springframework.integration.MessagingException; /** @@ -43,9 +40,9 @@ public interface MessageHandler { * MessageDeliveryException. * * @param message the message to be handled - * @throws MessageRejectedException if the handler doesn't accept the message - * @throws MessageHandlingException when something fails during the handling - * @throws MessageDeliveryException when this handler failed to deliver the + * @throws org.springframework.integration.MessageRejectedException if the handler doesn't accept the message + * @throws org.springframework.integration.MessageHandlingException when something fails during the handling + * @throws org.springframework.integration.MessageDeliveryException when this handler failed to deliver the * reply related to the handling of the message */ void handleMessage(Message message) throws MessagingException;