Corrected Javadoc grammar typo.

This commit is contained in:
Rick Evans
2007-05-28 13:55:17 +00:00
parent f929357b8c
commit 55186ca5f6

View File

@@ -19,17 +19,27 @@ package org.springframework.ws.client;
import org.springframework.ws.transport.TransportException;
/**
* Exception thrown whenever an transport error occurs on the client-side.
* Exception thrown whenever a transport error occurs on the client-side.
*
* @author Arjen Poutsma
*/
public class WebServiceTransportException extends WebServiceIOException {
/**
* Create a new instance of the <code>WebServiceTransportException</code> class.
* @param msg the detail message
*/
public WebServiceTransportException(String msg) {
super(msg);
}
/**
* Create a new instance of the <code>WebServiceTransportException</code> class.
* @param msg the detail message
* @param ex the root {@link TransportException}
*/
public WebServiceTransportException(String msg, TransportException ex) {
super(msg, ex);
}
}