diff --git a/core/src/main/java/org/springframework/ws/client/WebServiceIOException.java b/core/src/main/java/org/springframework/ws/client/WebServiceIOException.java
index 30d534c3..b17f9395 100644
--- a/core/src/main/java/org/springframework/ws/client/WebServiceIOException.java
+++ b/core/src/main/java/org/springframework/ws/client/WebServiceIOException.java
@@ -25,11 +25,21 @@ import java.io.IOException;
*/
public class WebServiceIOException extends WebServiceClientException {
+ /**
+ * Create a new instance of the WebServiceIOException class.
+ * @param msg the detail message
+ */
public WebServiceIOException(String msg) {
super(msg);
}
+ /**
+ * Create a new instance of the WebServiceIOException class.
+ * @param msg the detail message
+ * @param ex the root {@link IOException}
+ */
public WebServiceIOException(String msg, IOException ex) {
super(msg, ex);
}
+
}