polishing

This commit is contained in:
Mark Fisher
2010-10-27 13:16:07 -04:00
committed by Chris Beams
parent 4d3cf9cad4
commit ab2113cc13
5 changed files with 10 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2008 the original author or authors.
* Copyright 2002-2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@
package org.springframework.integration;
/**
* Exception that indicates an error during message delivery.
* Exception that indicates an error occurred during message delivery.
*
* @author Mark Fisher
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2008 the original author or authors.
* Copyright 2002-2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@
package org.springframework.integration;
/**
* Exception that indicates an error during message handling.
* Exception that indicates an error occurred during message handling.
*
* @author Mark Fisher
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2008 the original author or authors.
* Copyright 2002-2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

View File

@@ -16,8 +16,9 @@
package org.springframework.integration;
/**
* Exception that indicates a timeout elapsed prior to successful message delivery.
*
* @author Mark Fisher
*/
@SuppressWarnings("serial")

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2008 the original author or authors.
* Copyright 2002-2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -16,9 +16,8 @@
package org.springframework.integration;
/**
* The base exception for any failures within the messaging system.
* The base exception for any failures related to messaging.
*
* @author Mark Fisher
* @author Gary Russell
@@ -26,7 +25,7 @@ package org.springframework.integration;
@SuppressWarnings("serial")
public class MessagingException extends RuntimeException {
private Message<?> failedMessage;
private volatile Message<?> failedMessage;
public MessagingException(Message<?> message) {