From 4556a870f377c389ecab6ce8238f2215712d1031 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Fri, 2 Sep 2011 11:37:12 -0400 Subject: [PATCH] polishing --- .../integration/store/MessageStoreException.java | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/store/MessageStoreException.java b/spring-integration-core/src/main/java/org/springframework/integration/store/MessageStoreException.java index 1d93f53976..128f1f7820 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/store/MessageStoreException.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/store/MessageStoreException.java @@ -13,21 +13,20 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package org.springframework.integration.store; import org.springframework.integration.Message; import org.springframework.integration.MessagingException; /** + * Exception for problems that occur when using a {@link MessageStore} implementation. + * * @author Oleg Zhurakousky * @since 2.1 - * */ public class MessageStoreException extends MessagingException { - /** - * - */ private static final long serialVersionUID = 1L; /** @@ -42,7 +41,6 @@ public class MessageStoreException extends MessagingException { */ public MessageStoreException(String description) { super(description); - // TODO Auto-generated constructor stub } /** @@ -74,8 +72,7 @@ public class MessageStoreException extends MessagingException { * @param description * @param cause */ - public MessageStoreException(Message message, String description, - Throwable cause) { + public MessageStoreException(Message message, String description, Throwable cause) { super(message, description, cause); }