From bdf76dd383a4a65bd145a7efb045113506e5ebd5 Mon Sep 17 00:00:00 2001 From: Rick Evans Date: Mon, 28 May 2007 13:51:35 +0000 Subject: [PATCH] Javadoc'ced ctors. --- .../ws/client/WebServiceIOException.java | 10 ++++++++++ 1 file changed, 10 insertions(+) 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); } + }