Javadoc'ced ctors.

This commit is contained in:
Rick Evans
2007-05-28 13:51:35 +00:00
parent 983bfe6bc6
commit bdf76dd383

View File

@@ -25,11 +25,21 @@ import java.io.IOException;
*/
public class WebServiceIOException extends WebServiceClientException {
/**
* Create a new instance of the <code>WebServiceIOException</code> class.
* @param msg the detail message
*/
public WebServiceIOException(String msg) {
super(msg);
}
/**
* Create a new instance of the <code>WebServiceIOException</code> class.
* @param msg the detail message
* @param ex the root {@link IOException}
*/
public WebServiceIOException(String msg, IOException ex) {
super(msg, ex);
}
}