--- a/jdk/src/java.base/share/classes/java/net/ProtocolException.java Wed Mar 25 10:50:08 2015 +0000
+++ b/jdk/src/java.base/share/classes/java/net/ProtocolException.java Wed Mar 25 15:42:41 2015 +0000
@@ -42,10 +42,10 @@
* Constructs a new {@code ProtocolException} with the
* specified detail message.
*
- * @param host the detail message.
+ * @param message the detail message.
*/
- public ProtocolException(String host) {
- super(host);
+ public ProtocolException(String message) {
+ super(message);
}
/**