Corrected Javadoc grammar typo.

This commit is contained in:
Rick Evans
2007-05-28 14:19:09 +00:00
parent 55186ca5f6
commit 8b2f33d549

View File

@@ -19,17 +19,27 @@ package org.springframework.ws.client;
import javax.xml.transform.TransformerException;
/**
* Exception thrown whenever an transformation error occurs on the client-side.
* Exception thrown whenever a transformation error occurs <i>on the client-side</i>.
*
* @author Arjen Poutsma
*/
public class WebServiceTransformerException extends WebServiceClientException {
/**
* Create a new instance of the <code>WebServiceTransformerException</code> class.
* @param msg the detail message
*/
public WebServiceTransformerException(String msg) {
super(msg);
}
/**
* Create a new instance of the <code>WebServiceTransformerException</code> class.
* @param msg the detail message
* @param ex the root {@link Throwable exception}
*/
public WebServiceTransformerException(String msg, TransformerException ex) {
super(msg, ex);
}
}